/* Custom Properties */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream: #FFF8E7;
    --cream-dark: #FFF0D4;
    --amber-300: #FCD34D;
    --amber-400: #FBBF24;
    --amber-500: #F59E0B;
    --amber-600: #D97706;
    --rose-400: #FB7185;
    --rose-500: #F43F5E;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream);
    color: var(--emerald-900);
    overflow-x: hidden;
}

.font-title {
    font-family: 'Fredoka', sans-serif;
}

.font-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Geometric Background Shapes */
.geometric-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--emerald-500);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--amber-400);
    top: 40%;
    left: -80px;
    animation: spin 30s linear infinite;
}

.shape-square-1 {
    width: 200px;
    height: 200px;
    background: var(--emerald-400);
    bottom: 10%;
    right: 5%;
    transform: rotate(45deg);
    animation: float 25s ease-in-out infinite reverse;
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--rose-400);
    border-radius: 50%;
    bottom: -50px;
    left: 30%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(20px) rotate(-3deg); }
}

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

/* Navbar */
#navbar {
    background: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1);
}

/* Floating Cards */
.floating-card {
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 2s;
}

.card-3 {
    animation-delay: 4s;
}

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

/* Menu Cards */
.menu-card {
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
}

/* Gallery Items */
.gallery-item {
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.hidden {
    opacity: 0;
    transform: translateY(40px);
}

/* Mobile Menu */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.active {
    max-height: 400px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-card,
    .geometric-shape,
    .menu-card,
    .gallery-item img {
        animation: none;
        transition: none;
    }
    
    .menu-card:hover,
    .gallery-item:hover img {
        transform: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-card.card-3 {
        display: none;
    }
    
    .shape-circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-square-1 {
        width: 100px;
        height: 100px;
    }
    
    .shape-circle-2 {
        width: 150px;
        height: 150px;
    }
}
