:root {
    --color-cream: #F0E6D6;      /* Slightly darker cream for backgrounds */
    --color-beige: #E0D0AB;      /* Warm beige for secondary elements */
    --color-sage: #607550;       /* Sage green for primary elements */
    --color-taupe: #948C72;      /* Taupe for accents */
    --color-dark: #3A3A3A;       /* Darker shade for text */
    --color-light: #FAF9F6;      /* Ivory white for sections */
    --color-accent: #786452;
    --spacing-unit: 2rem;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-cream);
}

/* Add header font styles */
h1, h2, h3, .names, .logo {
    font-family: 'The Seasons', serif;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    z-index: 1000;
    top: 0;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    gap: 2rem;
}

nav a, .logo {
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
    z-index: 1002;
}

.logo {
    font-size: 3rem;
    font-weight: 500;
    font-family: 'The Seasons', serif;
    color: var(--color-light);
    order: 1;
}

.logo img {
    height: 140px;
    width: 140px;
    max-width: 100%;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    order: 2;
    margin: 0 auto;
    background: none;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: var(--color-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.nav-rsvp {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: var(--color-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-light);
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-rsvp:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.hero {
    height: 100vh;
    min-height: 800px;
    background: url('img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--color-light);
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero h1 {
    font-family: 'Quick Signature Personal Use', cursive;
    font-size: 5rem;
    letter-spacing: normal;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: none;
}

.names {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.date {
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.ceremony-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
    background-color: var(--color-cream);
}

.detail-block {
    padding: 2rem;
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-sage);
}

.time {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.location {
    margin-bottom: 2rem;
}

.map-link {
    color: var(--color-sage);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.story-preview, .join-us, .questions {
    text-align: center;
    padding: 8rem 2rem;
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-cream);
}

.button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 2rem;
    text-decoration: none;
    color: var(--color-light);
    border: none;
    background-color: var(--color-sage);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

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

footer {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--color-sage);
    color: var(--color-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
}

.hashtag {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--color-beige);
    font-weight: 500;
}

/* Add styles for scrolled state */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .logo,
.nav-scrolled .nav-links a,
.nav-scrolled .nav-rsvp {
    color: var(--color-sage);
}

.nav-scrolled .nav-rsvp {
    border-color: var(--color-sage);
}

.nav-scrolled .nav-rsvp:hover {
    background-color: var(--color-sage);
    color: var(--color-light);
}

@media (max-width: 768px) {
    nav {
        background: rgba(0, 0, 0, 0.8);
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        position: fixed;
        top: 1rem;
        left: 1.5rem;
        font-size: 2.2rem;
        line-height: 1;
        padding-top: 0.2rem;
        margin-right: 0;
        order: initial;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .names {
        font-size: 2.5rem;
    }

    .date {
        font-size: 1.5rem;
    }

    .ceremony-details {
        grid-template-columns: 1fr;
        margin: 0;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .detail-block {
        padding: 1.5rem;
    }

    .detail-block h2 {
        font-size: 2rem;
    }

    .story-preview, .join-us, .questions {
        padding: 5rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        margin-right: 0;
    }

    .hero {
        min-height: 600px;
    }

    .nav-scrolled {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .footer-links a {
        font-size: 1.2rem;
    }

    .hashtag {
        font-size: 1.2rem;
    }

    .logo img {
        height: 80px;
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .names {
        font-size: 2rem;
    }

    .date {
        font-size: 1.2rem;
    }

    .detail-block h2 {
        font-size: 1.8rem;
    }

    .time {
        font-size: 1rem;
    }

    .button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 500px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    nav {
        padding: 0.5rem;
    }

    nav ul {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .names {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .date {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ceremony-details {
        gap: 2rem;
        padding: 0 2rem;
    }

    .detail-block h2 {
        font-size: 2.2rem;
    }

    .time {
        font-size: 1.1rem;
    }
}

@media (min-width: 1440px) {
    .hero h1 {
        font-size: 6rem;
    }

    .names {
        font-size: 5rem;
    }

    .date {
        font-size: 2.5rem;
    }

    .ceremony-details {
        max-width: 1400px;
    }
}

/* Update hero overlay with gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Base Gallery Styles */
.gallery {
    width: 100%;
    padding: 0;
    background-color: var(--color-light);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/12;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--color-light);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-overlay {
        display: none;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 2rem;
}

.modal-content {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    margin: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: var(--color-light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.modal-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.modal-prev,
.modal-next {
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    opacity: 0.7;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-container {
        position: relative;
        overflow: hidden;
    }

    .gallery-item {
        position: relative;
        width: 100%;
        left: 0;
        opacity: 1;
        transition: opacity 0.3s ease;
        aspect-ratio: 4/5;
    }

    /* Remove all these swipe indicators */
    .gallery::after,
    .gallery::before,
    .gallery-nav {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.countdown-timer {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-light);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-left: 2rem;
    order: 3;
}

#countdown {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

#countdown span:not(.label) {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-light);
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 500;
}

/* Update for scrolled state */
.nav-scrolled .countdown-timer {
    color: var(--color-sage);
}

@media (max-width: 768px) {
    .countdown-timer {
        margin-top: 1rem;
    }

    #countdown {
        gap: 1rem;
    }

    #countdown span:not(.label) {
        font-size: 1.5rem;
    }
}

/* Add burger menu styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1003;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-light);
    transition: all 0.3s ease;
}

.nav-scrolled .mobile-menu-btn span {
    background-color: var(--color-sage);
}

/* Mobile menu open state */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Update mobile styles */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
        background: transparent;
    }

    .mobile-menu-btn {
        display: flex;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 25px;
        height: 18px;
    }

    .mobile-menu-btn span {
        height: 2px;
    }

    .logo {
        position: fixed;
        top: 1rem;
        left: 1.5rem;
        font-size: 2.2rem;
        line-height: 1;
        padding-top: 0.2rem;
        margin-right: 0;
        order: initial;
    }

    .countdown-timer {
        margin: 5rem auto 0;
        width: 100%;
        display: flex;
        justify-content: center;
        order: initial;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem;
        height: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(93, 108, 75, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-scrolled .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-scrolled .nav-links a {
        color: var(--color-sage);
    }

    .nav-scrolled .mobile-menu-btn span {
        background-color: var(--color-sage);
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 1rem;
        display: block;
        font-weight: 500;
    }

    .nav-scrolled {
        background: rgba(255, 255, 255, 0.98);
    }
}

.hashtag-hero {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    opacity: 0.9;
    color: var(--color-light);
}

@media (max-width: 768px) {
    .hashtag-hero {
        font-size: 1rem;
    }
}

/* Update countdown numbers */
#countdown span:not(.label) {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-light);
}

/* Keep sage color only when scrolled */
.nav-scrolled #countdown span:not(.label) {
    color: var(--color-sage);
}

/* Save the Date Section */
.save-the-date {
    background-color: var(--color-light);
    padding: 8rem 0;
}

.save-date-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.save-date-text {
    text-align: center;
    width: 100%;
}

.save-date-text h2 {
    color: var(--color-sage);
    font-size: 3rem;
    margin-bottom: 2.5rem;
    white-space: nowrap;
}

.date-large {
    font-family: 'The Seasons', serif;
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.date-time {
    font-size: 1.8rem;
    color: var(--color-taupe);
    margin-bottom: 1rem;
    font-weight: 500;
}

.date-location {
    font-size: 1.5rem;
    color: var(--color-taupe);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.save-date-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.save-date-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile styles */
@media (max-width: 768px) {
    .save-date-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }

    .save-date-text h2 {
        font-size: 2.5rem;
        white-space: normal;
    }

    .date-large {
        font-size: 2.8rem;
    }

    .date-time {
        font-size: 1.5rem;
    }

    .date-location {
        font-size: 1.3rem;
    }
}

.calendar-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.calendar-buttons .button {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Remove the compact button styles */
.calendar-buttons .button {
    /* Use default button styles */
}

@media (max-width: 768px) {
    .calendar-buttons {
        align-items: center;
    }
    
    .calendar-buttons .button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Venue Section Styles */
.venue-section {
    padding: 6rem 2rem 8rem;
    background-color: var(--color-cream);
}

.venue-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.venue-card {
    background: var(--color-light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
}

.venue-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.venue-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-image {
    transform: scale(1.05);
}

.venue-info {
    padding: 2rem;
}

.venue-type {
    color: var(--color-sage);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.venue-info h3 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 1.8rem;
    font-family: 'The Seasons', serif;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.venue-time, .venue-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-taupe);
    font-size: 1.2rem;
    font-weight: 500;
}

.icon {
    font-size: 1.2rem;
}

.venue-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-sage);
    color: var(--color-light);
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.venue-link:hover {
    background-color: var(--color-taupe);
    transform: translateY(-2px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .venue-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-image-wrapper {
        height: 250px;
    }

    .venue-info {
        padding: 1.5rem;
    }

    .venue-info h3 {
        font-size: 1.8rem;
    }

    .venue-link {
        width: 100%;
        text-align: center;
    }
}

/* Add these styles to your venue section */
.venue-header {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.venue-header h2 {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: 0;
    font-family: 'The Seasons', serif;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .venue-header {
        margin-bottom: 2rem;
    }

    .venue-header h2 {
        font-size: 2rem;
    }
}

/* Standardize section padding (except gallery) */
.save-the-date,
.venue-section,
.story-preview,
.join-us,
.questions {
    padding: 6rem 2rem 8rem;
}

/* Keep gallery padding at 0 */
.gallery {
    width: 100%;
    padding: 0;
    background-color: var(--color-light);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .save-the-date,
    .venue-section,
    .story-preview,
    .join-us,
    .questions {
        padding: 4rem 1rem 5rem;
    }

    .gallery {
        padding: 0;
    }
}

/* Update venue header styles */
.venue-header {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.venue-header h2 {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: 0;
    font-family: 'The Seasons', serif;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .venue-header {
        margin-bottom: 2rem;
    }

    .venue-header h2 {
        font-size: 2rem;
    }
}

/* Update heading styles */
h2,
.save-date-text h2,
.venue-header h2,
.entourage-header h2,
.info-header h2,
.rsvp-header h2 {
    font-size: 3rem;
    position: relative;
    display: block;
    margin: 0 auto;
    color: var(--color-dark);
    font-family: 'The Seasons', serif;
    text-align: center;
    width: 100%;
}

h2::before, h2::after,
.save-date-text h2::before, .save-date-text h2::after,
.venue-header h2::before, .venue-header h2::after,
.entourage-header h2::before, .entourage-header h2::after,
.info-header h2::before, .info-header h2::after,
.rsvp-header h2::before, .rsvp-header h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 18px;
    background: url('img/leaves.png') no-repeat center center;
    background-size: contain;
    margin: 0 auto;
}

h2::before, .save-date-text h2::before, .venue-header h2::before, .entourage-header h2::before,
.info-header h2::before, .rsvp-header h2::before {
    margin-bottom: 1rem;
}

h2::after, .save-date-text h2::after, .venue-header h2::after, .entourage-header h2::after,
.info-header h2::after, .rsvp-header h2::after {
    transform: scaleX(-1);
    margin-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    h2,
    .save-date-text h2,
    .venue-header h2,
    .entourage-header h2,
    .info-header h2,
    .rsvp-header h2 {
        font-size: 2.5rem;
    }

    h2::before, h2::after,
    .save-date-text h2::before, .save-date-text h2::after,
    .venue-header h2::before, .venue-header h2::after,
    .entourage-header h2::before, .entourage-header h2::after,
    .info-header h2::before, .info-header h2::after,
    .rsvp-header h2::before, .rsvp-header h2::after {
        width: 40px;
        height: 12px;
    }

    h2::before, .save-date-text h2::before, .venue-header h2::before, .entourage-header h2::before,
    .info-header h2::before, .rsvp-header h2::before {
        margin-bottom: 0.8rem;
    }

    h2::after, .save-date-text h2::after, .venue-header h2::after, .entourage-header h2::after,
    .info-header h2::after, .rsvp-header h2::after {
        margin-top: 0.8rem;
    }
}

/* Update venue styles */
.venue-time i,
.venue-address i {
    font-size: 1.4rem;
    color: var(--color-sage);
    width: 1.8rem;
}

/* Standardize all buttons */
.button,
.venue-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-sage);
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
}

.button:hover,
.venue-link:hover {
    background-color: var(--color-taupe);
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
        padding: 0 1.5rem;
    }

    h2::before,
    h2::after {
        width: 1.2rem;
    }
}

/* Entourage Section Styles */
.entourage-section {
    padding: 6rem 2rem 8rem;
    background-color: var(--color-light);
}

.invitation-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.invitation-card {
    perspective: 2000px;
    margin: 0 auto;
}

.card-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 0;
    padding-bottom: 141.4%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-side.back {
    transform: rotateY(180deg);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-controls {
    text-align: center;
    margin: 1rem 0 2rem;
}

.flip-button {
    background: var(--color-sage);
    color: var(--color-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.flip-button:hover {
    background: var(--color-taupe);
    transform: translateY(-2px);
}

.flip-button i {
    font-size: 1.2rem;
}

/* Flipped state */
.invitation-card.flipped .card-content {
    transform: rotateY(180deg);
}

/* Mobile styles */
@media (max-width: 768px) {
    .entourage-section {
        padding: 4rem 1rem 5rem;
    }

    .invitation-container {
        padding: 1rem;
    }

    .card-content {
        max-width: 450px;
    }

    .entourage-header {
        margin-bottom: 1rem;
    }
    
    .card-controls {
        margin: 0.5rem 0 1.5rem;
    }
}

/* Update entourage section styles */
.entourage-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.invitation-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.invitation-card {
    perspective: 2000px;
    margin: 0 auto;
}

/* Move card controls above the card */
.card-controls {
    text-align: center;
    margin: 1rem 0 2rem;
}

.flip-button {
    background: var(--color-sage);
    color: var(--color-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Information Section Styles */
.info-section {
    padding: 6rem 2rem 8rem;
    background-color: var(--color-cream);
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--color-light);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.info-card.gift-note {
    padding: 3rem;
}

.info-card.gift-note .info-content {
    max-width: 400px;
    margin: 0 auto;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-family: 'The Seasons', serif;
}

.info-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
}

.dress-code {
    font-size: 1.3rem;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.color-palette {
    width: 100%;
    max-width: none;
    margin-top: 2rem;
    text-align: left;
}

.color-palette p {
    color: var(--color-sage);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.color-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 0.5rem 0;
    width: 100%;
}

.color-chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    border: 2px solid var(--color-light);
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.color-chip:hover {
    transform: translateY(-5px);
    z-index: 1;
}

/* Tooltip styles */
.color-chip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: var(--color-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.color-chip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .color-chips {
        justify-content: center;
        gap: 1rem;
    }

    .color-chip {
        width: 50px;
        height: 50px;
    }

    .info-container {
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-card.gift-note {
        padding: 2rem;
    }
}

/* RSVP Section Styles */
.rsvp-section {
    padding: 6rem 2rem 8rem;
    background-color: var(--color-light);
    text-align: center;
}

.rsvp-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rsvp-form {
    background: var(--color-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-beige);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--color-dark);
    background-color: var(--color-light);
    transition: border-color 0.3s ease;
}

.radio-group {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.radio-label span {
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.rsvp-form .button {
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .rsvp-form {
        padding: 2rem;
    }

    .form-group label {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
    }

    .radio-label span {
        font-size: 1rem;
    }

    .rsvp-form .button {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Update RSVP header styles */
.rsvp-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .rsvp-header {
        margin-bottom: 1.5rem;
    }

    .rsvp-container {
        padding: 0 1rem;
    }

    .rsvp-form {
        padding: 1.5rem;
    }
}

/* Notification Modal Styles */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.notification-content {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    animation: slideIn 0.3s ease-out;
}

.notification-icon {
    color: var(--color-sage);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.notification-content h3 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-family: 'The Seasons', serif;
}

.notification-content p {
    color: var(--color-taupe);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.notification-close {
    min-width: 120px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Update the column ratio in dress code layout */
.dress-code-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Update illustration size for the bigger column */
.dress-illustration {
    width: 100%;
    max-width: none;
}

.dress-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.color-palette {
    width: 100%;
    max-width: none;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .dress-code-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dress-illustration {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Offset anchor links to account for fixed header */
section[id] {
    scroll-margin-top: 100px;
} 

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #607550;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: #4a5c3e;
}

.floating-call-btn::before {
    content: "Have questions about our wedding? Call us!";
    position: absolute;
    right: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-sage);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.floating-call-btn::after {
    content: "";
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: var(--color-sage);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-call-btn:hover::before,
.floating-call-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.floating-call-btn i {
    font-size: 24px;
}

/* Make it responsive for mobile */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-call-btn i {
        font-size: 20px;
    }
    
    .floating-call-btn::before {
        right: 0;
        top: auto;
        bottom: calc(100% + 15px);
        transform: translateY(0);
        font-size: 13px;
        text-align: center;
        width: 200px;
        right: -75px;
    }
    
    .floating-call-btn::after {
        right: auto;
        top: auto;
        bottom: calc(100% + 5px);
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid transparent;
        border-top-color: var(--color-sage);
        border-left-color: transparent;
    }
} 

/* Update info card styles */
.info-card {
    background: var(--color-light);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* Add divider between dress code and gift note */
.info-divider {
    width: 100%;
    height: 1px;
    background: var(--color-beige);
    margin: 3rem 0;
    opacity: 0.5;
}

/* Style gift note section */
.gift-note {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.gift-note .info-icon {
    margin-bottom: 1rem;
}

.gift-note h3 {
    margin-bottom: 1rem;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .info-divider {
        margin: 2rem 0;
    }

    .info-card {
        padding: 2rem;
    }

    .gift-note {
        max-width: 100%;
    }
}

/* Add these styles for the dress code text alignment */
.dress-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0;
    height: 100%;
}

.dress-col {
    margin-bottom: 0;
}

.dress-col h4 {
    color: var(--color-sage);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dress-col p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.dress-col small {
    display: block;
    margin-top: 0.8rem;
    color: var(--color-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.85;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dress-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dress-col h4,
    .color-palette p,
    .dress-col.gift-note h4 {
        font-size: 1.3rem;
    }

    .dress-col p,
    .dress-col.gift-note p {
        font-size: 1.1rem;
    }

    .dress-col small {
        font-size: 1rem;
    }
} 

/* Update gift note styles */
.dress-col.gift-note {
    background-color: var(--color-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--color-sage);
    width: 100%;
    max-width: none;
    margin-right: 0;
    box-sizing: border-box;
    text-align: left;
}

.dress-col.gift-note h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.dress-col.gift-note p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dress-col.gift-note {
        width: 100%;
        margin-right: 0;
        padding: 1.2rem;
    }
} 

/* Update visual content styles */
.dress-visual-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

/* Update illustration size */
.dress-illustration {
    width: 100%;
    max-width: none;
}

.dress-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* Update color palette */
.color-palette {
    width: 100%;
    max-width: none;
}

/* Update gift note */
.dress-col.gift-note {
    width: 100%;
    margin-right: 0;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .dress-code-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dress-illustration {
        max-width: 300px;
        margin: 0 auto;
    }
} 

/* Update signature styles */
.signature {
    font-family: 'The Seasons', serif;
    margin-top: auto;
    padding-top: 4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.signature .love {
    font-size: 1.6rem;
    color: var(--color-sage);
    font-style: italic;
    font-weight: 500;
}

.signature .names {
    font-size: 2.2rem;
    color: var(--color-sage);
    font-weight: 600;
    line-height: 1.2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .signature .love {
        font-size: 1.4rem;
    }
    
    .signature .names {
        font-size: 1.8rem;
    }
} 

/* Update dress info to allow flex positioning */
.dress-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0;
    height: 100%;
}

/* Update the dress col containing signature */
.dress-col:last-child {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 14%;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: rgba(0,0,0,0.9);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .youtube-container {
        width: 100%;
        padding-bottom: 56.25%;
        margin: 0;
    }

    .youtube-thumbnail {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .play-button {
        width: 48px;
        height: 36px;
        font-size: 1.2rem;
    }
}

.entourage-gallery {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0 0 0;
}

.entourage-img {
    max-width: 100%;
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    background: #fff;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.entourage-img:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.16);
    transform: scale(1.03);
}

@media (max-width: 1024px) {
  .entourage-gallery {
    gap: 2rem;
  }
  .entourage-img {
    width: 95vw;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .entourage-gallery {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  .entourage-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    margin: 0 auto 2rem auto;
    display: block;
  }
}

@media (max-width: 600px) {
  .info-header h2,
  .rsvp-header h2,
  .venue-header h2,
  .entourage-header h2,
  .save-date-text h2 {
    white-space: nowrap;
    font-size: 2rem;
  }
  h2::before, h2::after,
  .info-header h2::before, .info-header h2::after,
  .rsvp-header h2::before, .rsvp-header h2::after,
  .venue-header h2::before, .venue-header h2::after,
  .entourage-header h2::before, .entourage-header h2::after,
  .save-date-text h2::before, .save-date-text h2::after {
    width: 40px;
    height: 12px;
    min-width: 40px;
    min-height: 12px;
  }
} 