/*
Theme Name: Norah's Birthday Bash
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A mermaid-themed birthday party website for Norah
Version: 1.0
License: GPL v2 or later
Text Domain: norah-birthday
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-image: url('https://premansh.com/wp-content/uploads/2025/09/20210615_181117-scaled.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.hero-content {
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-section .highlight {
    font-size: 1.1rem;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.gallery-section .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RSVP Section */
.rsvp-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.rsvp-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rsvp-section h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.rsvp-section .subtitle {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.rsvp-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.rsvp-btn {
    padding: 12px 40px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.rsvp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.rsvp-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.rsvp-form h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Location Section */
.location-section {
    padding: 80px 20px;
    background: white;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.location-info p {
    color: #666;
    margin-bottom: 2rem;
}

.venue-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.venue-details h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.venue-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .rsvp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.in-view {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}