/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Luckiest Guy', cursive;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Luckiest Guy', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: #ff6b35;
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-accept:hover {
    transform: scale(1.05);
}

.btn-decline:hover {
    background: #fff;
    color: #ff6b35;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo span {
    font-size: 24px;
    color: #ff6b35;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

.btn-primary {
   border-radius: 40px;
background: linear-gradient(180deg, #FABB0A 0%, #FB667B 82.21%);
    border: none;
    padding: 12px 25px;
 
    color: #fff;
    font-family: 'Luckiest Guy', cursive;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    padding: 12px 25px;
    border-radius: 25px;
    color: #ff6b35;
    font-family: 'Luckiest Guy', cursive;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.1), transparent);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    
}

.hero-text h1 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-text h2  {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-text h2 span {
    font-size: 64px;
    background: linear-gradient(180deg, #FABB0A 0%, #FB667B 82.21%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 500px;
    
    line-height: 1.6;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}



/* About Section */
.about {
    padding: 100px 0;
    margin: 80px 20px;
}

.about-content {
    text-align: center;
    max-width: 1000px;
    padding: 60px 20px;
    margin: 0 auto;
    border-radius: 40px;
background: linear-gradient(180deg, #FABB0A 0%, #FB667B 82.21%);
}

.about h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #fff;
}

.about p {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    
}

/* Flavours Section */
.flavours {
    padding: 100px 0;
}

.flavours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.flavours h2 {
    font-size: 40px;
    color: #fff;
}

.flavours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.flavour-card {
    text-align: center;
  
    transition: transform 0.3s ease;
}

.flavour-card:hover {
    transform: translateY(-10px);
   
}

.flavour-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.flavour-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.flavour-card p {
    font-size: 14px;
    color: #ccc;
    
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #4a1a2ee3 0%, #2d1b2085 50%, #000000ab 100%);
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    color: #fff;
    font-weight: normal;
    letter-spacing: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonials-wrapper {
    position: relative;
    min-height: 500px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-sticker {
    position: absolute;
    display: flex;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    max-width: 400px;
    height: 80px;
    transition: transform 0.3s ease;
    z-index: 10;
}

.testimonial-sticker:hover {
    transform: scale(1.05) !important;
    z-index: 20;
}

.sticker-tab {
    width: 80px;
    height: 100%;
    border-radius: 25px 0 0 25px;
    flex-shrink: 0;
}

.testimonial-sticker[data-color="orange"] .sticker-tab {
    background: linear-gradient(135deg, #ffae35, #fff242);
}

.testimonial-sticker[data-color="teal"] .sticker-tab {
    background: linear-gradient(135deg, #20b2aa, #48d1cc);
}

.sticker-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticker-content h4 {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.sticker-content p {
    font-size: 12px;
    color: #000;
    
    line-height: 1.3;
    margin: 0;
}

/* Individual sticker positioning and rotation */
.testimonial-1 {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}

.testimonial-2 {
    top: 0;
    right: 0;
    transform: rotate(12deg);
}

.testimonial-3 {
    bottom: 0;
    left: 50px;
    transform: rotate(-15deg);
}

.testimonial-4 {
    bottom: 0;
    right: 50px;
    transform: rotate(8deg);
}

/* Decorative markers */
.marker {
    position: absolute;
    width: 40px;
    height: 15px;
    background: #666;
    border-radius: 20px;
    z-index: 5;
    opacity: 0.7;
}

.marker-1 {
    top: 50px;
    left: 200px;
    transform: rotate(45deg);
    background: #888;
}

.marker-2 {
    top: 80px;
    right: 150px;
    transform: rotate(-30deg);
    background: #777;
}

.marker-3 {
    bottom: 120px;
    left: 100px;
    transform: rotate(60deg);
    background: #666;
}

.marker-4 {
    bottom: 80px;
    right: 200px;
    transform: rotate(-45deg);
    background: #888;
}

/* Testimonials animations for scroll */
.testimonial-sticker {
    opacity: 0;
    transform: translateY(30px) rotate(-8deg);
    transition: all 0.8s ease;
}

.testimonial-sticker.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-1.animate-in {
    transform: rotate(-8deg);
}

.testimonial-2.animate-in {
    transform: rotate(12deg);
}

.testimonial-3.animate-in {
    transform: rotate(-15deg);
}

.testimonial-4.animate-in {
    transform: rotate(8deg);
}

/* Responsive testimonials adjustments */
@media (max-width: 1024px) {
    .testimonials-wrapper {
        max-width: 800px;
    }
    
    .testimonial-sticker {
        min-width: 250px;
        max-width: 350px;
        height: 70px;
    }
    
    .sticker-content {
        padding: 12px 18px;
    }
    
    .sticker-content h4 {
        font-size: 13px;
    }
    
    .sticker-content p {
        font-size: 11px;
    }
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #FABB0A 0%, #FB667B 82.21%), #FFF;
}

.gallery h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats */
.stats {
    padding: 100px 0;
    background: #000;
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-number {
    font-size: 140px;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, #000 0%, rgba(12, 12, 12, 0.00) 100%);
}

.stat-number::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, #000 0%, rgba(12, 12, 12, 0.00) 100%);
}

.stat-number span {
    -webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #FFF;
color: #000;
}

.stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.out-of {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.big-number {
    font-size: 140px;
   color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    color: #fff;
    max-width: 300px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #FABB0A 0%, #FB667B 82.21%), #FFF;
    border-radius: 50px;
    margin: 80px 20px;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
}

.cta-text p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #fff;
  
    line-height: 1.6;
}

.cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #000;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-logo-big {
    font-size: 60px;
    color: #fff;
    letter-spacing: 3px;
}

.footer-left p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
   
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        height: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

 
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .about {
        margin: 40px 10px;
        padding: 60px 10px;
        border-radius: 30px;
    }
    
    .about h2 {
        font-size: 32px;
    }
    
    .flavours-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .flavours h2 {
        font-size: 28px;
    }
    
    .flavours-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 60px;
    }
    
    .testimonials-wrapper {
        min-height: 400px;
    }
    
    /* .testimonial-sticker {
        position: relative !important;
        margin: 20px auto;
        transform: none !important;
        min-width: 280px;
        max-width: 100%;
        display: block;
    } */
    
    /* .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    } */
    
    .marker {
        
    }
    
    .gallery h2 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-content {
        
    }
    
    .stat-number {
        font-size: 120px;
    }
    
    .big-number {
        font-size: 80px;
    }
    
    .description {
        text-align: center;
    }
    
    .cta {
        margin: 40px 10px;
        padding: 60px 30px;
        border-radius: 30px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo-big {
        text-align: center;
        font-size: 40px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 120px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .about h2,
    .flavours h2,
    .testimonials h2,
    .gallery h2,
    .cta-text h2 {
        font-size: 24px;
    }
    
    .flavours-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-1 {
    top: -24%;
    left: 0;
    transform: rotate(-8deg);
}

.testimonial-2 {
    top: 0;
    right: 0;
    transform: rotate(12deg);
}

.testimonial-3 {
    bottom: 0;
    left: 50px;
    transform: rotate(-15deg);
}

.testimonial-4 {
    bottom: -24%;
    right: 50px;
    transform: rotate(8deg);
}

.stats-content {
    gap: 10px;
    flex-wrap: wrap;
}
    
    .stat-number {
        font-size: 80px;
    }
    
    .big-number {
        font-size: 60px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                