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

body {
    font-family: 'Baskerville', 'Libre Baskerville', serif;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 50%, #ff9f43 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Floating decorations */
.floating-decoration {
    position: fixed;
    font-size: 40px;
    animation: float-around 20s infinite ease-in-out;
    z-index: 1;
    opacity: 0.6;
}

.decoration-1 { top: 10%; left: 5%; animation-delay: 0s; }
.decoration-2 { top: 20%; right: 10%; animation-delay: 2s; font-size: 50px; }
.decoration-3 { top: 40%; left: 8%; animation-delay: 4s; font-size: 45px; }
.decoration-4 { top: 60%; right: 5%; animation-delay: 6s; }
.decoration-5 { top: 75%; left: 12%; animation-delay: 8s; font-size: 48px; }
.decoration-6 { top: 85%; right: 15%; animation-delay: 10s; font-size: 42px; }
.decoration-7 { top: 30%; right: 20%; animation-delay: 12s; }
.decoration-8 { top: 50%; left: 3%; animation-delay: 14s; font-size: 38px; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(10deg); }
    50% { transform: translate(-20px, 20px) rotate(-10deg); }
    75% { transform: translate(20px, 30px) rotate(5deg); }
}

.nav {
    background: linear-gradient(135deg, #ff9966 0%, #ff8c52 100%);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 153, 102, 0.4);
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    color: #fff5e6;
    font-size: 2.5em;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff5e6;
    text-decoration: none;
    font-size: 1.15em;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.nav-links a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255,255,255,0.6);
}

.nav-links a.active {
    text-shadow: 0 2px 8px rgba(255,255,255,0.6);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff5e6;
    border-radius: 2px;
}

.hero {
    background: linear-gradient(135deg, #ffb347 0%, #ff9966 50%, #ff8c52 100%);
    color: #fff5e6;
    text-align: center;
    padding: 90px 40px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero::before {
    content: '🐯';
    position: absolute;
    font-size: 180px;
    opacity: 0.12;
    top: -30px;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '🐯';
    position: absolute;
    font-size: 150px;
    opacity: 0.12;
    bottom: -20px;
    right: 10%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

.hero h1 {
    font-size: 4.5em;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-style: italic;
}

.hero p {
    font-size: 1.7em;
    font-weight: 600;
    opacity: 0.95;
    font-style: italic;
}

.container {
    max-width: 1000px;
    margin: -50px auto 50px;
    background: linear-gradient(135deg, #fff9f0 0%, #ffefd5 100%);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255, 140, 82, 0.3);
    padding: 50px 60px;
    position: relative;
    z-index: 10;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffb347 20%, #ff9966 80%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 140, 82, 0.3);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 4px double #ff8c52;
    padding-bottom: 30px;
}

.menu-header h2 {
    font-size: 3.2em;
    color: #ff8c52;
    margin-bottom: 15px;
    font-style: italic;
}

.menu-header p {
    color: #8b4513;
    font-size: 1.25em;
    font-style: italic;
}

.menu-divider {
    text-align: center;
    margin: 50px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    border-radius: 15px;
    border: 3px solid #ff9966;
    box-shadow: 0 5px 20px rgba(255, 140, 82, 0.2);
}

.menu-divider h2 {
    font-size: 3em;
    color: #ff8c52;
    margin-bottom: 15px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.menu-divider p {
    color: #8b4513;
    font-size: 1.2em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 50px;
}

.menu-section h3 {
    font-size: 2.4em;
    color: #d63031;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fdcb6e;
    display: flex;
    align-items: center;
    gap: 15px;
    font-style: italic;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.5);
}

.menu-item:hover {
    background: linear-gradient(135deg, #ffe8cc 0%, #ffd7a8 100%);
    transform: translateX(10px);
    border: 2px solid #fdcb6e;
    box-shadow: 0 5px 20px rgba(255, 140, 82, 0.2);
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.5em;
    color: #8b4513;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-description {
    color: #a0522d;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.05em;
}

.item-price {
    font-size: 1.6em;
    color: #d63031;
    font-weight: 700;
    margin-left: 20px;
    white-space: nowrap;
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9966 0%, #ff8c52 100%);
    color: #fff5e6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    margin-left: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 140, 82, 0.4);
}

.chef-special {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b2 100%);
    border-left: 5px solid #f39c12;
}

.about-section, .membership-section, .events-section, .contact-section {
    margin-bottom: 40px;
}

.about-section h3, .membership-section h3, .events-section h3, .contact-section h3 {
    font-size: 2.2em;
    color: #ff8c52;
    margin-bottom: 20px;
    font-style: italic;
}

.about-section p, .membership-section p, .events-section p, .contact-section p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #8b4513;
    margin-bottom: 15px;
}

.event-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid #ff9966;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
}

.event-card h4 {
    font-size: 1.5em;
    color: #d63031;
    margin-bottom: 10px;
}

.event-date {
    font-style: italic;
    color: #ff8c52;
    margin-bottom: 10px;
}

.membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.plan-card {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #ff9966;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 140, 82, 0.3);
}

.plan-card h4 {
    font-size: 1.8em;
    color: #d63031;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2em;
    color: #ff8c52;
    font-weight: bold;
    margin: 20px 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.group-photo {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 30px auto;
    background: linear-gradient(135deg, #ffb347 20%, #ff9966 80%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    box-shadow: 0 8px 25px rgba(255, 140, 82, 0.3);
}

.chore-list {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.chore-list ul {
    list-style-position: inside;
    margin-left: 20px;
}

.chore-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, #ff9966 0%, #ff8c52 100%);
    color: #fff5e6;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

footer p {
    font-weight: 600;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff5e6;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.05em;
    cursor: pointer;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-decoration {
        font-size: 30px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .logo {
        font-size: 2em;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1em;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.3em;
    }

    .container {
        padding: 30px 20px;
        margin: -30px 15px 30px;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .menu-section h3 {
        font-size: 1.8em;
    }

    .menu-item {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .item-name {
        font-size: 1.3em;
    }

    .item-description {
        font-size: 1em;
    }

    .item-price {
        margin-left: 0;
        font-size: 1.4em;
    }

    .about-section h3, .membership-section h3, .events-section h3, .contact-section h3 {
        font-size: 1.8em;
    }

    .about-section p, .membership-section p, .events-section p, .contact-section p {
        font-size: 1.05em;
    }

    .event-card h4 {
        font-size: 1.3em;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .group-photo {
        height: 300px;
        font-size: 3em;
    }
}