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

:root {
    --primary-color: #2d5a27;
    --primary-light: #4a8141;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --forest-green: #355e3b;
    --sky-blue: #87ceeb;
    --earth-brown: #8b4513;
    --sunshine-yellow: #ffd700;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    --transition: all 0.3s ease;
    --animation-duration: 0.6s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Image Sizing Controls */
/* Base image rules */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation Logo */
.nav-logo .logo-img {
    max-width: 60px;
    max-height: 50px;
    width: auto;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
}

/* Hero and Main Content Images */
.hero-img,
.activity-img,
.provisions-img,
.event-img {
    max-width: 600px;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Parties Main Images */
.pricing-img,
.themes-img {
    max-width: 400px;
    max-height: 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 0 auto;
    display: block;
}

/* Party Bag Images */
.bag-img {
    max-width: 200px;
    max-height: 150px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    margin: 0;
    transition: var(--transition);
    display: block;
}

.bag-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Room Hire Images */
.room-img {
    max-width: 250px;
    max-height: 200px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 10px 5px;
}

/* Main Page Images */
.intro-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Responsive Image Adjustments */
@media (max-width: 768px) {
    .nav-logo .logo-img {
        max-width: 45px;
        max-height: 38px;
    }
    
    .hero-img,
    .activity-img,
    .provisions-img,
    .event-img {
        max-width: 100%;
        max-height: 300px;
    }
    
    .pricing-img,
    .themes-img {
        max-width: 100%;
        max-height: 250px;
    }
    
    .room-img {
        max-width: 200px;
        max-height: 150px;
    }
    
    .bag-img {
        max-width: 120px;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-img {
        max-width: 35px;
        max-height: 30px;
    }
    
    .hero-img,
    .activity-img,
    .provisions-img,
    .event-img {
        max-height: 250px;
    }
    
    .room-img {
        max-width: 150px;
        max-height: 120px;
    }
    
    .bag-img {
        max-width: 100px;
        max-height: 70px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
    white-space: nowrap;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--forest-green), var(--primary-color));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 180, 80, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 90, 39, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--sunshine-yellow);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.animate-fade-in {
    animation: fadeInUp var(--animation-duration) ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp var(--animation-duration) ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp var(--animation-duration) ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp var(--animation-duration) ease-out 0.6s both;
}

/* Introduction Section */
.intro-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--forest-green), var(--primary-light));
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.story-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.story-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.feature-link::after {
    content: '→';
    transition: var(--transition);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--forest-green));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-section p a {
    color: inherit;
    text-decoration: none;
}

.footer-section p a:hover {
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-info i {
    color: var(--secondary-color);
    width: 16px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 350px;
    }
    
    .story-image {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-section,
    .intro-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Page-specific styles will be added to each individual page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--forest-green));
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 4rem;
}

.highlight-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.schedule-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.schedule-time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.schedule-details {
    margin-top: 0.5rem;
    color: var(--text-light);
}

/* Scroll-triggered animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for images */
.image-placeholder {
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Image Gallery Layouts */
.party-bag-gallery {
    margin-top: 1rem;
}

.bag-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.room-hire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.room-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

.pricing-header-section,
.themes-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-text,
.themes-text {
    flex: 1;
}

.pricing-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.themes-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Provisions Grid */
.school-provisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.provisions-content {
    padding-right: 1rem;
}

.provisions-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.provisions-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.provisions-pricing {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.price-box {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-details {
    color: var(--text-light);
    font-size: 0.9rem;
}

.extra-cost {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.session-time {
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Content Section Spacing */
.content-section {
    margin-bottom: 4rem;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.page-content {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Party Themes Styling */
.themes-section {
    margin-top: 3rem;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.theme-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.theme-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.theme-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.theme-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Cards Styling */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
    position: relative;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-details {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.included-items ul {
    list-style: none;
    padding: 0;
}

.included-items li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included-items li i {
    color: var(--primary-color);
    width: 20px;
}

/* Food and Party Bags Styling */
.food-party-section {
    margin-top: 3rem;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.food-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.food-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.food-card h4 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.included-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.upgrade-price,
.bag-price {
    background: var(--accent-color);
    color: #ffffff; /* Changed from green to white */
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.food-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.food-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 20px;
}

.food-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.food-note {
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.dietary-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.dietary-info h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.allergy-bag {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.allergy-bag h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.allergy-bag ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.allergy-bag li {
    padding: 0.2rem 0;
    padding-left: 15px;
    position: relative;
}

.allergy-bag li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.party-bags {
    text-align: center;
}

.party-bag-gallery {
    margin-top: 1.5rem;
}

.bag-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bag-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bag-img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Events Section Styling */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

  .event-image {
      position: relative;
      overflow: hidden;
      height: auto;
      max-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f8f8;
  }

  .event-img {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: contain;
      display: block;
  }

.event-content {
    padding: 2rem;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-date i {
    color: var(--accent-color);
}

.event-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-booking {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.event-booking h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.booking-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.booking-link:hover {
    color: var(--primary-color);
}

.booking-link i {
    font-size: 0.9rem;
}

/* Party Schedule Styling */
.party-schedule {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.schedule-day h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.time-slots {
    list-style: none;
    padding: 0;
}

.time-slots li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.summer-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.cafe-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Room Hire Page Styling */
.room-hire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.room-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
}

.room-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.room-card > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.room-features {
    text-align: left;
    margin-bottom: 2rem;
}

.room-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features h4 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.room-features ul {
    list-style: none;
    padding: 0;
}

.room-features li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 20px;
}

.room-features li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.booking-section {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.booking-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-section h4 i {
    color: var(--accent-color);
}

.booking-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Booking CTA Section */
.booking-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 2rem;
}

.booking-cta h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.booking-cta h4 i {
    color: var(--sunshine-yellow);
    font-size: 2rem;
}

.booking-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.booking-cta .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.booking-cta .btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.booking-cta .btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Mobile Responsive for New Layouts */
@media (max-width: 768px) {
    .pricing-header-section,
    .themes-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .school-provisions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-hire-grid {
        grid-template-columns: 1fr;
    }
    
    .bag-images,
    .room-images {
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .nav-logo {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
        white-space: nowrap;
    }
    
    .nav-logo .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .theme-item {
        padding: 1.5rem;
    }
    
    .food-card {
        padding: 1.5rem;
    }
    
    .bag-img {
        height: 100px;
    }
    
    .event-card {
        margin-bottom: 1rem;
    }
    
    .party-schedule {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .themes-grid {
        gap: 0.75rem;
    }
    
    .pricing-grid {
        gap: 1rem;
    }
    
    .food-grid {
        gap: 1rem;
    }
    
    .theme-item,
    .pricing-card,
    .food-card {
        padding: 1rem;
    }
    
    .bag-images {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .bag-img {
        height: 80px;
    }
    
    .content-section {
        padding: 1.5rem 0.5rem;
    }
    
    .nav-logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .price-large {
        font-size: 2.5rem;
    }
    
    .events-grid {
        gap: 1rem;
    }
    
    .room-hire-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
/* Hero Section Adjustments for Logo Spacing (Fluid) */
.hero {
    position: relative;
    /* Fluid top padding: minimum 80px, preferred 12vh, maximum 160px */
    padding-top: clamp(80px, 12vh, 160px);
}

/* Hero logo sizing remains responsive */
.hero-logo-img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 1199px) {
    .hero-logo-img {
        max-width: 240px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 200px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 140px;
        margin-bottom: 10px;
    }
}

.event-price {
    background-color: #27ae60 !important; /* force green background */
    color: #ffffff !important; /* white text */
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}