/* ===== CSS Variables ===== */
:root {
    --green-dark: #4A7C59;
    --green-light: #8BC34A;
    --yellow: #FFD93D;
    --yellow-soft: #FFF8E1;
    --orange: #FF9800;
    --pink: #E91E63;
    --red: #F44336;
    --purple: #9C27B0;
    --blue: #2196F3;
    --white: #FFFFFF;
    --cream: #FFFDF7;
    --gray-light: #F5F5F5;
    --gray: #757575;
    --dark: #2D3436;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 50px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(180deg, var(--green-light) 0%, var(--yellow-soft) 30%, var(--cream) 100%);
    min-height: 100vh;
    color: var(--dark);
    overflow-x: hidden;
    position: relative;
}

/* ===== Background Decorations ===== */
.bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--yellow);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--green-light);
    bottom: 20%;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--pink);
    top: 50%;
    right: -50px;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(-20px, -10px) scale(1.02); }
}

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

.bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: rise linear infinite;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
}

@keyframes rise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Container ===== */
.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== Header ===== */
.header {
    text-align: center;
    padding: 40px 20px;
    animation: dropIn 0.8s ease-out;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-gills {
    font-family: 'Lilita One', cursive;
    font-size: clamp(2rem, 8vw, 3rem);
    color: var(--green-dark);
    text-shadow: 2px 2px 0 var(--white);
}

.logo-drinks {
    font-family: 'Lilita One', cursive;
    font-size: clamp(3rem, 12vw, 5rem);
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.1));
}

.tagline {
    font-size: 1.3rem;
    color: var(--dark);
    margin-top: 10px;
    font-weight: 500;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-top: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

.location-icon {
    font-size: 1.2rem;
}

/* ===== Menu Section ===== */
.menu-section {
    margin: 20px 0 30px;
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

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

.menu-frame {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.menu-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-light), var(--yellow), var(--orange), var(--pink));
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* ===== Features ===== */
.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: slideUp 0.6s ease-out 0.3s backwards;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.3rem;
}

/* ===== WhatsApp CTA ===== */
.cta-section {
    text-align: center;
    margin: 40px 0;
    animation: slideUp 0.6s ease-out 0.4s backwards;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.5),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    background: #20BA5C;
    transform: scale(1.05);
}

.whatsapp-btn:active {
    transform: scale(0.98);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.cta-subtitle {
    margin-top: 12px;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Team Section ===== */
.team-section {
    text-align: center;
    margin: 40px 0;
    animation: slideUp 0.6s ease-out 0.5s backwards;
}

.team-title {
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
    min-width: 80px;
}

.team-member:hover {
    transform: translateY(-5px) rotate(-2deg);
}

.team-member:nth-child(even):hover {
    transform: translateY(-5px) rotate(2deg);
}

.member-emoji {
    font-size: 2rem;
    margin-bottom: 5px;
}

.member-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
    animation: slideUp 0.6s ease-out 0.6s backwards;
}

.payment-info {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.payment-info p {
    margin: 5px 0;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--green-dark);
    font-weight: 700;
    letter-spacing: 1px;
}

.copyright {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: all 0.3s ease;
    animation: bounce-in 0.6s ease-out 1s backwards;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .whatsapp-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .feature {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .team-member {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .whatsapp-float,
    .bubbles,
    .bg-circles {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
}
