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

:root {
    --primary-color: #2fd9a4;
    --primary-color-old: #d4a574;
    --secondary-color: #8b6f47;
    --text-color: #333;
    --text-hover-color: #000;
    --light-text: #666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-hover-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.rsvp-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.rsvp-link:hover {
    background: var(--secondary-color);
}

.rsvp-link::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
    padding: 100px 20px 60px;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    align-items: center;
}

.video-column {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.hero-content {
    max-width: 900px;
    min-height: 600px;
    z-index: 10;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
}

.center {
    text-align: center;
}

.hero-content .main-profile-image {
    margin-top: 20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
}

.hero-content .main-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-title .name {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.2;
}

.hero-title .ampersand {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-style: italic;
    margin: 0.5rem 0;
}

.hero-location {
    margin-top: 3rem;
}

.location-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.date {
    font-size: 1.2rem;
    color: var(--light-text);
    letter-spacing: 2px;
}

/* Venue Section */

.venue-section {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.venue-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.venue-description {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Schedule Section */

.wish-icon {
    width: 100px;
    height: 100px;
    vertical-align: middle;
    display: inline-block;
}

.wish-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schedule-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.schedule-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.schedule-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.schedule-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.schedule-content p {
    color: var(--light-text);
    margin: 0.3rem 0;
}

/* Dress Code Section */
.dress-code-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.dress-code-category {
    text-align: center;
}

.dress-code-category h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.dress-code-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dress-code-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    min-height: 300px;
    align-items: center;
    justify-content: center;
}

.dress-code-placeholder span {
    color: var(--light-text);
    font-style: italic;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    /*background: var(--bg-light);*/
}

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

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8ddd4 0%, #d4a574 100%);
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Travel Section */
.travel-section {
    padding: 80px 20px;
    background: var(--white);
}

.effer-section {
    padding: 80px 20px;
    background: var(--primary-color);
    position: relative;
}

.flower-decoration {
    background-image: url(./images/flower.svg);
    width: 200px;
    height: 100px;
    background-size: 373px 202px;
    background-position: -221px -21px;
    background-repeat: no-repeat;
    
    margin: 0 auto;
    padding: 0px;
    display: block;
}

.flower-decoration.top {
    margin-bottom: 0px;
    margin-top: -90px;
}

.flower-decoration.bottom {
    margin-top: 40px;
}

.flower-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

.travel-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.travel-item {
    text-align: center;
}

.travel-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.travel-item p {
    color: var(--light-text);
    margin: 0.5rem 0;
    line-height: 1.8;
}

/* RSVP Section */
.rsvp-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.rsvp-text {
    max-width: 700px;
    margin: 1rem auto 2rem;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.rsvp-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    margin-bottom: 3rem;
}

.rsvp-button:hover {
    background: var(--secondary-color);
}

.rsvp-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: none;
}

.rsvp-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--text-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 20px;
}

.video-wrapper-bottom {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-column {
        display: none;
    }
    
    .venue-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero {
        padding-bottom: 1rem;
        padding-top: 6rem;
        min-height: 10px;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-column {
        height: 400px;
    }

    .hero-title .name {
        font-size: 2rem;
    }

    .hero-title .ampersand {
        font-size: 1.8rem;
    }

    .venue-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .dress-code-grid {
        grid-template-columns: 1fr;
    }

    .travel-content {
        grid-template-columns: 1fr;
    }

    .rsvp-form {
        padding: 2rem 1.5rem;
    }
    
    .video-wrapper-bottom {
        display: block;
        margin-top: 2rem;
    }
    
    .video-wrapper-bottom video {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title .name {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .location-name {
        font-size: 1.2rem;
    }

    .date {
        font-size: 1rem;
    }
}
.quintessential-regular {
    font-family: "Quintessential", serif;
    font-weight: 400;
    font-style: normal;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the div, crops if needed */
}





