/* 
Zrinks Brand Landing Page Styles
Colors from palette:
- Dark Blue/Purple: #16133e
- Mint Green: #00ffa9
- Cherry Red: #e2284f
- Sky Blue: #00aeff
- Yellow: #fef02f
- Cyan: aqua
- White: #fff
- Black: #000
*/

/* Global Styles & Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    color: #16133e;
    background-color: #fff;
    position: relative;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Bubbles Animation */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 50% 55%, rgba(240, 245, 255, 0.9), rgba(240, 245, 255, 0.1) 40%, rgba(240, 245, 255, 0) 60%);
    border-radius: 50%;
    box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.3), inset 0 -15px 30px rgba(0, 0, 0, 0.1);
    transform-origin: center bottom;
    pointer-events: none;
    opacity: 0.7;
    will-change: transform, opacity;
}

.bubble:nth-child(1) {
    width: 30px;
    height: 30px;
    left: 10%;
    animation: bubble-rise 9s infinite ease-in-out;
    animation-delay: 0.2s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation: bubble-rise 6s infinite ease-in-out;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation: bubble-rise 11s infinite ease-in-out;
    animation-delay: 0.5s;
}

.bubble:nth-child(4) {
    width: 15px;
    height: 15px;
    left: 50%;
    animation: bubble-rise 7s infinite ease-in-out;
    animation-delay: 2s;
}

.bubble:nth-child(5) {
    width: 40px;
    height: 40px;
    left: 65%;
    animation: bubble-rise 10s infinite ease-in-out;
    animation-delay: 0s;
}

.bubble:nth-child(6) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation: bubble-rise 8s infinite ease-in-out;
    animation-delay: 1.5s;
}

.bubble:nth-child(7) {
    width: 35px;
    height: 35px;
    left: 5%;
    animation: bubble-rise 9.5s infinite ease-in-out;
    animation-delay: 3s;
}

.bubble:nth-child(8) {
    width: 15px;
    height: 15px;
    left: 28%;
    animation: bubble-rise 7s infinite ease-in-out;
    animation-delay: 2.5s;
}

.bubble:nth-child(9) {
    width: 45px;
    height: 45px;
    left: 42%;
    animation: bubble-rise 10.5s infinite ease-in-out;
    animation-delay: 0.7s;
}

.bubble:nth-child(10) {
    width: 22px;
    height: 22px;
    left: 56%;
    animation: bubble-rise 8.5s infinite ease-in-out;
    animation-delay: 1.2s;
}

.bubble:nth-child(11) {
    width: 38px;
    height: 38px;
    left: 72%;
    animation: bubble-rise 9.2s infinite ease-in-out;
    animation-delay: 0.3s;
}

.bubble:nth-child(12) {
    width: 18px;
    height: 18px;
    left: 88%;
    animation: bubble-rise 7.8s infinite ease-in-out;
    animation-delay: 1.8s;
}

.bubble:nth-child(13) {
    width: 28px;
    height: 28px;
    left: 15%;
    animation: bubble-rise 8.7s infinite ease-in-out;
    animation-delay: 2.2s;
}

.bubble:nth-child(14) {
    width: 33px;
    height: 33px;
    left: 32%;
    animation: bubble-rise 9.3s infinite ease-in-out;
    animation-delay: 0.9s;
}

.bubble:nth-child(15) {
    width: 23px;
    height: 23px;
    left: 48%;
    animation: bubble-rise 7.5s infinite ease-in-out;
    animation-delay: 2.8s;
}

.bubble:nth-child(16) {
    width: 42px;
    height: 42px;
    left: 63%;
    animation: bubble-rise 10.2s infinite ease-in-out;
    animation-delay: 0.4s;
}

.bubble:nth-child(17) {
    width: 19px;
    height: 19px;
    left: 77%;
    animation: bubble-rise 7.3s infinite ease-in-out;
    animation-delay: 1.6s;
}

.bubble:nth-child(18) {
    width: 36px;
    height: 36px;
    left: 92%;
    animation: bubble-rise 9.7s infinite ease-in-out;
    animation-delay: 1.1s;
}

.bubble:nth-child(19) {
    width: 26px;
    height: 26px;
    left: 23%;
    animation: bubble-rise 8.3s infinite ease-in-out;
    animation-delay: 2.3s;
}

.bubble:nth-child(20) {
    width: 38px;
    height: 38px;
    left: 58%;
    animation: bubble-rise 9.6s infinite ease-in-out;
    animation-delay: 1.9s;
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    30% {
        transform: translateY(-30vh) scale(1.02) rotate(5deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50vh) scale(1.05) rotate(-5deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-75vh) scale(1.08) rotate(8deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) scale(1.1) rotate(-8deg);
        opacity: 0;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e2284f;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: #e2284f;
    color: white;
    border: 2px solid #e2284f;
}

.primary-btn:hover {
    background-color: transparent;
    color: #e2284f;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
    color: #16133e;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background-color: rgba(22, 19, 62, 0.9);
    padding: 10px 50px;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 40px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #00ffa9;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(22, 19, 62, 0.8), rgba(226, 40, 79, 0.4));
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.subheading {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 1.1s;
}

.featured-products {
    position: absolute;
    right: -80px;
    bottom: -50px;
    width: 400px;
    height: 300px;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeIn 1s forwards 1.4s;
    z-index: 2;
}

.featured-products img {
    position: absolute;
    height: 150px; /* Half the original size */
    transition: transform 0.5s ease-out;
}

.can-apple {
    right: 60px;
    bottom: 40px;
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

.can-blueberry {
    right: 160px;
    bottom: 30px;
    z-index: 2;
    transform: rotate(-45deg) scale(0.85);
    animation: floating 3s ease-in-out infinite 0.5s;
}

.can-lemon {
    right: 10px;
    bottom: 100px;
    z-index: 1;
    transform: rotate(45deg) scale(0.9);
    animation: floating 3s ease-in-out infinite 1s;
}

.swirl-effect {
    position: absolute;
    right: 30px;
    bottom: 60px;
    width: 200px;
    height: 200px;
    background: linear-gradient(to right, transparent, rgba(0, 255, 169, 0.1), rgba(226, 40, 79, 0.1));
    border-radius: 50%;
    transform-origin: center;
    animation: spin 15s linear infinite;
    z-index: 1;
}

.swirl-effect::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.swirl-effect::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: spin 10s linear infinite reverse;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Flavor Showcase */
.flavors {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    overflow: hidden;
}

.flavor-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.flavor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.circle-1 {
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 169, 0.3), rgba(0, 174, 255, 0.3));
    animation: circle-move-1 20s infinite alternate ease-in-out;
}

.circle-2 {
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: linear-gradient(45deg, rgba(226, 40, 79, 0.3), rgba(254, 240, 47, 0.3));
    animation: circle-move-2 15s infinite alternate ease-in-out;
}

.circle-3 {
    top: 30%;
    right: 20%;
    width: 30%;
    height: 30%;
    background: linear-gradient(45deg, rgba(22, 19, 62, 0.2), rgba(0, 255, 169, 0.2));
    animation: circle-move-3 18s infinite alternate ease-in-out;
}

@keyframes circle-move-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

@keyframes circle-move-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-5%, -5%) scale(1.1);
    }
}

@keyframes circle-move-3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-3%, 3%) scale(1.05);
    }
}

.flavor-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.flavor-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 320px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flavor-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.flavor-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-15px) scale(1.02);
}

.flavor-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #f9f9f9, #f1f1f1);
}

.flavor-can {
    height: 260px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    will-change: transform;
    z-index: 2;
}

.flavor-card:hover .flavor-can {
    transform: translateY(-20px) rotate(5deg);
}

.can-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 3;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(200%);
    }
}

.flavor-content {
    padding: 30px;
    text-align: center;
    background-color: white;
    position: relative;
    z-index: 1;
}

.flavor-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #16133e;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.flavor-card:hover .flavor-content h3 {
    transform: scale(1.05);
}

.flavor-content p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.flavor-card:hover .flavor-content p {
    opacity: 0.8;
}

.flavor-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    background-color: #e2284f;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(226, 40, 79, 0.3);
    z-index: 1;
}

.flavor-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: width 0.3s ease;
    z-index: -1;
}

.flavor-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(226, 40, 79, 0.4);
}

.flavor-btn:hover:before {
    width: 100%;
    animation: shimmer-btn 1s infinite;
}

@keyframes shimmer-btn {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* About Section */
.about {
    background-color: #16133e;
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 255, 169, 0.1);
}

.about::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(226, 40, 79, 0.1);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.grid-item {
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.grid-item:nth-child(1) {
    background-color: #00ffa9;
}

.grid-item:nth-child(2) {
    background-color: #e2284f;
}

.grid-item:nth-child(3) {
    background-color: #00aeff;
}

.grid-item:nth-child(4) {
    background-color: #fef02f;
}

/* Launch Section */
.launch {
    background-color: #f9f9f9;
    padding: 120px 0;
}

.launch-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.city-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 320px;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

.city-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.city-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.city-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.city-card:hover .city-image {
    transform: scale(1.05);
}

.delhi {
    background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5');
}

.mumbai {
    background-image: url('https://images.unsplash.com/photo-1570168007204-dfb528c6958f');
}

.bangalore {
    background-image: url('https://images.unsplash.com/photo-1566552881560-0be862a7c445');
}

.city-card h3 {
    margin-top: 20px;
    font-size: 1.8rem;
    color: #16133e;
}

.city-card p {
    color: #666;
    padding: 0 20px;
}

.launch-date {
    display: inline-block;
    margin: 15px 0 20px;
    padding: 8px 15px;
    background-color: #00ffa9;
    color: #16133e;
    border-radius: 20px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, #16133e, #e2284f);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.cta p.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta .primary-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0.4s;
}

.cta .primary-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.6s;
}

.newsletter.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-family: inherit;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #00ffa9;
    color: #16133e;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #fef02f;
}

/* Footer */
footer {
    background-color: #16133e;
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.link-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.link-column h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #00ffa9;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 10px;
}

.link-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #00ffa9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: #00ffa9;
    color: #16133e;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 600px;
    }
    
    .headline {
        font-size: 3rem;
    }
    
    .featured-products {
        width: 300px;
        right: -50px;
    }
    
    .featured-products img {
        height: 130px;
    }
    
    .can-apple {
        right: 40px;
    }
    
    .can-blueberry {
        right: 120px;
    }
    
    .can-lemon {
        right: 0;
    }
    
    .about-content {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 30px;
    }
    
    header.scrolled {
        padding: 10px 30px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #16133e;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .subheading {
        font-size: 1.2rem;
    }
    
    .featured-products {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 200px;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;
    }
    
    .featured-products img {
        position: relative;
        height: 120px;
        margin: 0 -15px;
    }
    
    .can-apple {
        right: auto;
        bottom: auto;
        transform: translateY(0) !important;
    }
    
    .can-blueberry {
        right: auto;
        bottom: auto;
        transform: rotate(-30deg) scale(0.85) !important;
    }
    
    .can-lemon {
        right: auto;
        bottom: auto;
        transform: rotate(30deg) scale(0.9) !important;
    }
    
    .swirl-effect {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, .newsletter-form button {
        width: 100%;
        border-radius: 30px;
    }
    
    .newsletter-form button {
        margin-top: 10px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 0;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .flavor-card, .city-card {
        width: 100%;
    }
    
    .image-grid {
        height: 300px;
    }
} 