/*
Theme Name: HCKVAgency Theme
Theme URI: https://hckvagency.space
Author: HCKVAgency
Author URI: https://hckvagency.space
Description: A professional WordPress theme for HCKVAgency landing pages, featuring testimonials, contact forms, and full customization. Includes sample images from Pexels for demonstration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hckvagency-theme
Tags: one-column, landing-page, custom-background, custom-logo, custom-menu
*/

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #fff;
}

a {
  color: #f24e4e;
  text-decoration: none;
}

header {
  background: #242424;
  color: #fff;
  padding: 18px 24px;
}

header .site-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
header .site-title {
  font-size: 20px;
  letter-spacing: 0.03em;
  margin: 0;
}

nav {
  display: flex;
  gap: 20px;
}

.hero {
  background: linear-gradient(180deg, #f95e79 0%, #f24e4e 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 5rem);
  margin: 0 0 20px;
  line-height: 1.05;
}

.hero p {
  font-size: 1.125rem;
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero .button {
  display: inline-block;
  background: #fff;
  color: #f24e4e;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.section {
  padding: 60px 24px;
}

.section.light {
  background: #fafafa;
}

.section h2 {
  font-size: 2.4rem;
  margin: 0 0 16px;
  text-align: center;
}

.section p {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
  color: #555;
}

.features {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.feature-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
  border-radius: 20px;
}

.products-section {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.products-section > * {
  position: relative;
  z-index: 2;
}

.brands-section {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.brands-section > * {
  position: relative;
  z-index: 2;
}

.contact-section {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.contact-section > * {
  position: relative;
  z-index: 2;
}

.contact-wrapper {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
  grid-template-columns: 1fr 1fr;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background: #f24e4e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.testimonials {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
  color: #555;
}

.testimonial cite {
  font-weight: 600;
  color: #333;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #f24e4e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.contact-details {
  max-width: 600px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
}

.cta-bar {
  background: #f24e4e;
  color: #fff;
  text-align: center;
  padding: 42px 24px;
}

.cta-bar h2,
.cta-bar p {
  margin: 0;
}

.cta-bar .button {
  margin-top: 24px;
}

footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  header .site-branding {
    flex-direction: column;
    gap: 16px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}
