@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.navbar {

position: fixed;

top: 0;
left: 0;

width: 100%;

padding: 25px 0;

display: flex;
flex-direction: column;

align-items: center;

z-index: 9999;

transition: all .4s ease;

}

.navbar.scrolled {

background: rgba(255,255,255,.92);

backdrop-filter: blur(16px);

box-shadow:
0 4px 30px rgba(0,0,0,.08);

padding: 15px 0;

}

.navbar-logo {

margin-bottom: 12px;

}

.navbar-logo img {

height: 52px;

display: block;

transition: .3s;

}

.navbar.scrolled .navbar-logo img {

height: 42px;

}

.navbar-links {

display: flex;

gap: 42px;

}

.navbar-links a {

text-decoration: none;

font-size: 13px;

font-weight: 600;

letter-spacing: 2px;

text-transform: uppercase;

color: #111;

position: relative;

transition: .3s;

}

.navbar-links a:hover {

color: #FF7A00;

}

.navbar-links a::after {

content: "";

position: absolute;

left: 0;
bottom: -8px;

width: 0%;

height: 2px;

background: #FF7A00;

transition: .3s;

}

.navbar-links a:hover::after {

width: 100%;

}

.navbar-links a.active {

color: #FF7A00;

}

.navbar-links a.active::after {

width: 100%;

}

@media(max-width:768px){

.navbar {

padding: 18px 0;

}

.navbar-logo img {

height: 40px;

}

.navbar-links {

gap: 16px;

flex-wrap: wrap;

justify-content: center;

padding: 0 15px;

}

.navbar-links a {

font-size: 11px;

}

}

.hero {
  background-image: url('assets/bubbles-bg.jpg');
  background-size: cover;
  background-position: center;

  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 8% 60px;
  background: linear-gradient(to bottom, #fff8f3, #ffffff);
}

.hero-content {
  width: 50%;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 18px 36px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ff7a00;
}
.hero-image {
  width: 40%;
  animation: float 5s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.section {
  padding: 120px 8%;
}

.section-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  margin: 20px 0;
}

.flavor-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.flavor-card {
  margin-bottom: 20px;
}

.orange {
  background-image: url('assets/bg-orange.jpg');
  background-size: cover;
  background-position: center;

  background: linear-gradient(to bottom, #fff4eb, #fff);
}

.mango {
  background-image: url('assets/bg-mango.jpg');
  background-size: cover;
  background-position: center;

  background: linear-gradient(to bottom, #fff9e6, #fff);
}

.cranberry {
  background-image: url('assets/bg-cranberry.jpg');
  background-size: cover;
  background-position: center;

  background: linear-gradient(to bottom, #fff0f3, #fff);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  font-size: 48px;
  color: #ff7a00;
}

.cta-section {
  background-image: url('assets/premium-section.jpg');
  background-size: cover;
  background-position: center;

  background: #111;
  color: white;
  text-align: center;
  border-radius: 40px;
  padding: 100px 8%;
  margin: 80px 8%;
}
.cta-section h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.footer {
  padding: 80px 8%;
  background: #f5f5f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer h3 {
  margin-bottom: 20px;
}

.footer p,
.footer a {
  color: #666;
  line-height: 2;
  text-decoration: none;
}

@media(max-width: 992px) {

  .hero {
    flex-direction: column;
    text-align: center;
    
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

}

/* ========================= */
/* BRAND STORY SECTIONS */
/* ========================= */

.story-section{
    padding:140px 10%;
    background:#ffffff;
    text-align:center;
}

.story-container{
    max-width:900px;
    margin:auto;
}

.section-tag{
    letter-spacing:3px;
    font-size:13px;
    color:#ff6b35;
    font-weight:600;
}

.story-section h2{
    font-size:58px;
    margin:25px 0 40px;
    line-height:1.2;
}

.story-lead{
    font-size:24px;
    font-weight:500;
    margin-bottom:30px;
}

.story-section p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    font-size:18px;
}

/* ========================= */

.difference-section{
    padding:140px 10%;
    background:#faf8f6;
}

.difference-section h2{
    text-align:center;
    font-size:56px;
    margin-bottom:70px;
}

.comparison-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    max-width:1100px;
    margin:auto;
}

.comparison-card{
    background:white;
    padding:50px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.comparison-card h3{
    margin-bottom:25px;
    font-size:28px;
}

.comparison-card ul{
    padding-left:20px;
}

.comparison-card li{
    margin-bottom:18px;
    font-size:18px;
}

.shoots-card{
    border:2px solid #ff6b35;
}

/* ========================= */

.statement-section{
    padding:160px 10%;
    background:#111;
    color:white;
    text-align:center;
}

.statement-section h2{
    font-size:60px;
    line-height:1.2;
    margin-bottom:40px;
}

.statement-section p{
    max-width:900px;
    margin:auto;
    margin-bottom:25px;
    color:#d9d9d9;
    line-height:1.9;
    font-size:18px;
}

.statement-signature{
    margin-top:60px;
    font-size:15px;
    letter-spacing:5px;
    color:#ff6b35;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .story-section h2,
    .difference-section h2,
    .statement-section h2{
        font-size:38px;
    }

    .comparison-grid{
        grid-template-columns:1fr;
    }

}
