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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

.rsvp-btn {
    background-color: #ffd700;
    color: #000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Jumbotron */
.jumbotron {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jumbotron-content {
    padding: 2rem;
}

.jumbotron h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.jumbotron .date,
.jumbotron .location {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* Video Container */
.video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: rgba(20, 20, 20, 0.9);
    position: relative;
    z-index: 1;
}

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

.details-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.detail-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

/* RSVP Section */
.rsvp-section {
    text-align: center;
    padding: 4rem 0;
}

.rsvp-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rsvp-button {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.rsvp-button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }

    .nav-links a {
        margin-left: 1rem;
    }

    .jumbotron h1 {
        font-size: 3rem;
    }

    .jumbotron .date,
    .jumbotron .location {
        font-size: 1.2rem;
    }

    .content {
        padding: 2rem 1rem;
    }

    .details-section h2,
    .rsvp-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links a:not(.rsvp-btn) {
        display: none;
    }

    .jumbotron h1 {
        font-size: 2.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
} 