/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #c8102e;
  --red-dark: #9b0c22;
  --red-light: #e8192e;
  --yellow: #f5c518;
  --dark: #1a1a1a;
  --dark2: #222222;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --font-main: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================================
   SECTION HEADER
=================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.divider span {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  display: block;
}

.divider::before,
.divider::after {
  content: '';
  width: 20px;
  height: 4px;
  background: var(--red);
  opacity: 0.35;
  border-radius: 2px;
}

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(200, 16, 46, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================================
   HERO
=================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--red);
  background-image: 
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 80px
    );
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-text h1 span {
  color: var(--yellow);
  display: block;
}

.hero-text p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-socials {
  display: flex;
  gap: 14px;
}

.hero-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.hero-socials a:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 460px;
}

.bottle-img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  animation: float 3.5s ease-in-out infinite;
  border-radius: 16px;
  object-fit: cover;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===================================
   FLAVORS
=================================== */
.flavors {
  padding: 100px 0;
  background: var(--white);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200,16,46,0.15);
}

.flavor-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffecef, #ffd0d7);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid rgba(200,16,46,0.1);
  transition: border-color var(--transition);
}

.flavor-img-wrap.green {
  background: linear-gradient(135deg, #edfff3, #c8f5d8);
  border-color: rgba(34,139,34,0.15);
}

.flavor-img-wrap.orange {
  background: linear-gradient(135deg, #fff5e8, #ffdcac);
  border-color: rgba(255,140,0,0.15);
}

.flavor-card:hover .flavor-img-wrap {
  border-color: var(--red);
}

.flavor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-card h3 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.flavor-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===================================
   TESTIMONIALS
=================================== */
.testimonials {
  padding: 100px 0;
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  border-left-color: var(--red);
  transform: translateY(-5px);
}

.testimonial-card.featured {
  border-left-color: var(--red);
  transform: scale(1.03);
  box-shadow: 0 16px 50px rgba(200,16,46,0.18);
}

.testimonial-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.t-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid var(--red);
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-stars {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  gap: 3px;
}

.testimonial-card h4 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.testimonial-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
}

/* ===================================
   CONTACT
=================================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-item i {
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 4px;
  font-family: var(--font-main);
}

.info-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition);
  background: #fafafa;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.btn-send {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  align-self: flex-start;
}

.btn-send:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,16,46,0.35);
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--red-dark);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom i {
  color: var(--red);
}

/* ===================================
   RESPONSIVE - TABLET
=================================== */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 0 100px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text p {
    max-width: 100%;
    margin: 0 auto 32px;
  }

  .hero-socials {
    justify-content: center;
  }

  .hero-image {
    max-width: 300px;
  }

  .bottle-img {
    max-height: 320px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ===================================
   RESPONSIVE - MOBILE
=================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--red-dark);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .flavors {
    padding: 70px 0;
  }

  .testimonials {
    padding: 70px 0;
  }

  .contact {
    padding: 70px 0;
  }

  .flavors-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .testimonial-card.featured {
    transform: scale(1);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .btn-send {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .section-header h2 {
    font-size: 1.6rem;
  }
}

/* ===================================
   HAMBURGER ANIMATION
=================================== */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   SCROLL ANIMATIONS
=================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
