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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 50%, #E6F3FF 100%);
    color: #5A4A42;
    overflow-x: hidden;
}

/* Floating Hearts Animation */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '💖';
    position: absolute;
    font-size: 20px;
    animation: float-heart 8s infinite linear;
    opacity: 0.3;
}

.floating-hearts::before {
    left: 20%;
    animation-delay: 0s;
}

.floating-hearts::after {
    left: 80%;
    animation-delay: 4s;
}

@keyframes float-heart {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 2s ease-out;
    text-align: left;
    position: absolute;
    top: 20%;
    left: 5%;
    max-width: 600px;
}

.slokha-text {
    font-size: 1.3rem;
    color: white;
    margin: 1rem 0;
    font-weight: 500;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

.baby-name {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #f4f0ee;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #FF8C42, #FFA500);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    display: inline-block;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF8C42, #FFA500);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.journey-cta {
    position: absolute;
    bottom: 10%;
    right: 5%;
    text-align: center;
    color: white;
    background: linear-gradient(45deg, #FF8C42, #FFA500);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.journey-cta:hover {
    transform: translateY(-5px);
}

.arrow-down {
    font-size: 1.5rem;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

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

/* Navigation */
.nav-menu {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    text-align: center;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.nav-item {
    display: inline-block;
    margin: 0 2rem;
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #D4A574;
    transform: translateY(-2px);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A574;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Section Titles */
.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #D4A574;
    text-align: center;
    margin: 3rem 0;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
}

.month-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.month-btn {
    background: rgba(212, 165, 116, 0.2);
    border: 2px solid #D4A574;
    color: #8B7355;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.month-btn:hover,
.month-btn.active {
    background: #D4A574;
    color: white;
    transform: translateY(-2px);
}

.month-slideshow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.month-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.month-slide.active {
    display: block;
}

.month-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Blessings Section */
.blessings-section {
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #FFE4E1 0%, #E6F3FF 100%);
}

.blessing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.blessing-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.slokha-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(212, 165, 116, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.sanskrit {
    font-size: 1.5rem;
    color: #8B7355;
    margin-bottom: 1rem;
    font-weight: 500;
}

.translation {
    font-size: 1.1rem;
    color: #5A4A42;
    font-style: italic;
}

.floating-elements {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.floating-elements > div {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-elements .diya {
    animation-delay: 0s;
}

.floating-elements .lotus {
    animation-delay: 1s;
}

.floating-elements .star {
    animation-delay: 2s;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #D4A574;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Monthly Journey Section */
.months-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
}

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

.month-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.month-item:hover {
    transform: translateY(-10px);
}

.month-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.month-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.month-item:hover .month-overlay {
    transform: translateY(0);
}

.month-caption {
    font-size: 1.1rem;
    font-weight: 500;
}
@media (max-width: 768px) {
    .baby-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-item {
        margin: 0 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .month-nav {
        gap: 0.5rem;
    }
    
    .month-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .floating-elements {
        gap: 2rem;
    }
    
    .floating-elements > div {
        font-size: 2rem;
    }
    
    .nav-btn {
        display: none;
    }
}