/* ===== CSS VARIABLES FOR CONSISTENT COLOR SCHEME ===== */
:root {
    /* Primary Colors - Soft, welcoming palette */
    --primary-pink: #FF6B9D;
    --primary-blue: #4ECDC4;
    --primary-purple: #A78BFA;
    --primary-yellow: #FFD93D;
    
    /* Secondary Colors */
    --secondary-pink: #FF8FB1;
    --secondary-blue: #6DD5ED;
    --secondary-purple: #C4B5FD;
    --secondary-yellow: #FFE66D;
    
    /* Neutral Colors - High contrast for accessibility */
    --text-dark: #1A1A2E;
    --text-medium: #16213E;
    --text-light: #4A5568;
    --text-muted: #718096;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-lighter: #EDF2F7;
    --bg-accent: #F0F9FF;
    
    /* Status Colors */
    --success: #48BB78;
    --warning: #ED8936;
    --error: #F56565;
    --info: #4299E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { 
    color: var(--primary-pink); 
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.nav-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.nav-home:hover {
    color: var(--secondary-pink);
    transform: translateY(-1px);
}

.nav-arrows {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid transparent;
}

.nav-arrow:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-blue) 50%, var(--primary-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="babies" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="30" r="8" fill="white" opacity="0.15"/><circle cx="40" cy="50" r="12" fill="white" opacity="0.15"/><circle cx="35" cy="25" r="2" fill="white" opacity="0.15"/><circle cx="45" cy="25" r="2" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23babies)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    position: relative;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-line {
    display: block;
    opacity: 0.95;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-light);
}

.content-section:nth-child(even) {
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-blue));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== CONTENT GRID ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.text-content h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-blue));
    border-radius: 2px;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.text-content strong {
    color: var(--primary-pink);
    font-weight: 700;
}

.image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.image-content img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* ===== FEATURE LISTS ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-pink);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-accent);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-blue));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-pink);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-pink);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== THEMES SHOWCASE ===== */
.themes-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.theme-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: var(--bg-white);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.theme-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.theme-card:hover img {
    transform: scale(1.05);
}

.theme-info {
    padding: 1.5rem;
    background: var(--bg-white);
}

.theme-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.theme-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== DECORATION OPTIONS ===== */
.decoration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.decoration-option {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.decoration-option:hover {
    border-color: var(--primary-purple);
    background: var(--bg-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.decoration-option h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.decoration-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== GAMES OPTIONS ===== */
.games-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--primary-blue);
}

.game-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-accent);
}

.game-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.game-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.game-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== CATERING HIGHLIGHTS ===== */
.catering-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.catering-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.catering-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-accent);
}

.catering-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.catering-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .nav-arrows {
        display: none;
    }
    
    .themes-showcase {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .decoration-options {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .image-content img {
        height: 250px;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .feature-item,
    .game-item,
    .catering-item {
        padding: 1.25rem;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.nav-home:focus,
.nav-arrow:focus,
.service-card:focus,
.theme-card:focus,
.decoration-option:focus {
    outline: 3px solid var(--primary-pink);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-medium: #1a1a1a;
        --text-light: #333333;
        --bg-white: #ffffff;
        --bg-light: #f0f0f0;
    }
}