/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.6;
}

h1, .gallery-title, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Hero Section Styles */
.hero {
    display: flex;
    min-height: 100vh;
    padding: 0 5% 0 8%;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.intro-text {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.event-info {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #444;
}

.rsvp-btn {
    display: inline-block;
    padding: 14px 60px;
    border: 1px solid #000;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.rsvp-btn:hover {
    background: #000;
    color: #fff;
}

.hero-image {
    flex: 1.2;
}

.hero-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

/* Gallery Styles (The Albums) */
.gallery-container {
    padding: 100px 8%;
    background-color: #fafafa;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

.photo-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: opacity 0.4s ease;
}

.photo-card img:hover {
    opacity: 0.8;
}

.photo-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

footer {
    text-align: center;
    padding: 50px;
    font-size: 0.8rem;
    color: #999;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .hero-image img {
        height: 50vh;
    }
}