/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars globally */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    /* scroll-behavior: smooth removed - handled via JS for anchor navigation */
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: #001925;
    color: #ffffff;
    overflow-x: hidden;
}

/* ===================================
   Typography & Font Imports
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');

.getting-large {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 71.62px;
    line-height: 100%;
    color: #C7BAA3;
    vertical-align: top;
    display: inline-block;
    position: relative;
    top: -8px;
    /* Align with 'etting' */
}

.getting-regular {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 31.95px;
    font-weight: 400;
    font-style: normal;
    line-height: 47.99px;
    color: #C7BAA3;
    letter-spacing: 0;
    vertical-align: baseline;
    /* Align baseline with G */
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    /* Make it ETTING */
    margin-left: 2px;
    /* Adjust spacing */
}

.name-letter {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 71.62px;
    line-height: 100%;
    color: #C7BAA3;
    vertical-align: text-bottom;
    display: inline-block;
}

.script-text {
    font-family: 'Playfair Display', 'Cormorant', serif;
    font-style: italic;
    font-weight: 400;
}

/* ===================================
   Section Layout
   =================================== */
.section {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    padding: 80px 24px 60px;
    position: relative;
}

.section-hero {
    background-color: #001925;
    color: #ffffff;
    padding-bottom: 0 !important;
    min-height: auto;
}

.section-couple {
    background-color: #ffffff;
    color: #1a1a1a;
    padding-bottom: 0;
}

.section-event {
    background-color: #ffffff;
    color: #1a1a1a;
    padding-top: 60px;
    padding-bottom: 0;
    border: none;
}

.section-rsvp {
    background-color: #001925;
    color: #ffffff;
    padding-top: 50px;
}

.section-carousel {
    background-color: #ffffff;
    color: #2F2A2A;
    padding: 0;
    min-height: auto;
}

/* ===================================
   Section 5: Prewedding Carousel
   =================================== */
.carousel-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.carousel-counter {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #2F2A2A;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-title {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #2F2A2A;
    text-transform: uppercase;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 80%;
    max-width: 400px;
}

.carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    touch-action: pan-y pinch-zoom;
}

.carousel-slide {
    min-width: 100vw;
    width: 100vw;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 70vh;
}

/* ===================================
   Menu Toggle (Hamburger)
   =================================== */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.hidden {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Change color when on light background sections */
.menu-toggle.light-bg span {
    background-color: #C7BAA3;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Navigation Menu
   =================================== */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 25, 37, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

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

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-menu.active li:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-menu.active li:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-menu.active li:nth-child(4) {
    transition-delay: 0.25s;
}

.nav-menu.active li:nth-child(5) {
    transition-delay: 0.3s;
}

.nav-menu a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.9px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4b896;
}

/* ===================================
   Section 1: Hero Announcement
   =================================== */
.hero-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 31.95px;
    font-weight: 400;
    line-height: 47.99px;
    margin-bottom: 30px;
    letter-spacing: 0;
    color: #C7BAA3;
    text-align: center;
}

.hero-title-line {
    display: block;
    color: #C7BAA3;
}

/* "THE WEDDING OF" text styling */
.wedding-of-text {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Names "ADELINE AND DANIEL" with gradient */
.hero-names {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 47.99px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 12px;
    /* Gradient text effect */
    background: linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Underline for names */
.hero-names-underline {
    width: 280px;
    height: 1px;
    background: linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    margin: 0 auto 30px;
}

/* "SUNDAY, 26 JULY 2026" hero wedding date */
.hero-wedding-date {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 47.99px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 8px;
    /* Gradient text effect */
    background: linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Photo Container with Overlay */
.hero-photo-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 40px;
    margin-bottom: -5px;
    /* Slight negative margin to ensure no gap reveals background */
}

.hero-photo-fullwidth {
    width: 100%;
    height: auto;
    display: block;
}

.hero-quote-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    z-index: 10;
    padding: 15px 0;
}

.hero-quote-text {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-quote-reference {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.wedding-date {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    /* Regular */
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #C7BAA3;
    margin-bottom: 8px;
    text-align: center;
}

.wedding-venue {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    /* Regular */
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #C7BAA3;
    margin-bottom: 40px;
    text-align: center;
}

.hero-photo {
    width: 100%;
    max-width: 280px;
    margin: 40px auto;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.celebrate-text {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    margin: 40px 0;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
}

.celebrate-word {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
}

.the-word {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
}

.with-us-word {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
}

.love-large {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 12px;
    /* Adjust to align with other text */
}

.jump-button {
    background-color: #C7BAA3;
    color: #1a1a1a;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
    font-weight: 400;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.jump-button-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.jump-button:hover {
    background-color: #C7BAA3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 184, 150, 0.3);
}

.jump-button:hover .jump-button-icon {
    transform: translateY(2px);
}

/* ===================================
   Section 2: Couple Introduction
   =================================== */
.couple-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.groom-info,
.bride-info {
    margin-bottom: 60px;
}

.name-line {
    margin-bottom: 12px;
    /* space between first letter and rest of name */
    display: flex;
    align-items: baseline;
    /* keep baseline alignment */
    justify-content: center;
    gap: 0;
}

.couple-name-letter,
.couple-name-rest {
    margin: 0;
}

.couple-name-letter {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 59.69px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    display: block;
    margin-bottom: 0;
}

.couple-name-rest {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 31px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: left;
    display: block;
    margin-top: -10px;
    /* adjust spacing if needed */
}


.couple-full-name {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    /* Regular */
    font-size: 31px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.couple-parents {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #666;
}

.parent-names {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #333;
}

.couple-separator {
    margin: 50px 0;
}

.ampersand {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 59.69px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1a1a1a;
}

.couple-photos {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: calc(100% + 48px);
    margin: 50px -24px 0 -24px;
}

.couple-photo-item {
    flex: 0 0 50%;
    width: 50%;
    overflow: hidden;
}

.couple-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-section {
    margin-top: 60px;
    padding-top: 40px;
    background-color: #ffffff;
}

.story-photo-fullwidth {
    width: calc(100% + 48px);
    margin: 40px -24px 0 -24px;
    overflow: hidden;
}

.story-photo-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.event-photo-fullwidth {
    width: calc(100% + 48px);
    margin: 60px -24px 0 -24px;
    overflow: hidden;
}

.event-photo-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Import fonts */
@font-face {
    font-family: 'Lucia BT';
    src: url('../fonts/Lucia BT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;1,6..96,400&family=Pinyon+Script&display=swap');

.story-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

/* H - Large decorative initial */
.story-title-h {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-weight: 400;
    font-size: 59.69px;
    line-height: 100%;
    letter-spacing: 0%;
    font-style: normal;
    margin-right: 2px;
    transform: translateY(4px);
}

/* OW - First part of title */
.story-title-ow {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', 'Didot', serif;
    font-weight: 400;
    font-size: 31px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-right: 10px;
}

/* WE MET - Second part of title */
.story-title-wemet {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', 'Didot', serif;
    font-weight: 400;
    font-size: 31px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.story-text {
    font-family: 'Neue Haas Unica Pro', 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #727272;
    max-width: 600px;
    margin: 0 auto;
}

.story-text p {
    margin-bottom: 24px;
    line-height: 1.6;
    /* Override 100% for better readability */
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-dots {
    font-size: 16px;
    letter-spacing: 12px;
    margin-top: 50px;
    color: #999;
    text-align: center;
}

/* ===================================
   Section 3: Event Details
   =================================== */
@font-face {
    font-family: 'Neue Haas Unica Pro';
    src: url('../fonts/Neue Haas Unica Pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



.event-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.event-title {
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.event-title-e {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    font-style: normal;
    margin-right: 2px;
    transform: translateY(4px);
}

.event-title-main {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', 'Didot', serif;
    font-weight: 400;
    font-size: 31px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-transform: uppercase;
}

.event-item {
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-icon {
    font-size: 24px;
    margin-bottom: 15px;
    display: none;
    /* Hidden in new design */
}

.event-icon-img {
    width: 40px;
    height: auto;
    margin-bottom: 30px;
    display: block;
}

.event-spacer {
    height: 60px;
    width: 100%;
}

.event-date {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 15px;
    color: #000000;
    text-transform: uppercase;
}

.event-time {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.event-name {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* Event Name Title - HOLY MATRIMONY, NIGHT RECEPTION */
.event-name-title {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% */
    text-align: center;
    color: #2F2A2A;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Event Date and Time combined */
.event-datetime {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #2F2A2A;
    margin-bottom: 24px;
}

/* Event Venue Name - Bold */
.event-venue-name {
    font-family: 'Inter', 'Neue Haas Unica Pro', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #2F2A2A;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Event Address Link - Underlined */
.event-address-link {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0.03em;
    /* 3% */
    text-align: center;
    color: #797979;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 2px;
    display: block;
    margin-bottom: 8px;
}

.event-address-link:hover {
    color: #2F2A2A;
}

/* No Children Notice */
.no-children-notice {
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no-children-icon {
    width: 40px;
    height: auto;
    margin-bottom: 16px;
}

.no-children-text {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #2F2A2A;
    margin: 0;
}

/* Event Venue - Legacy */
.event-venue {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-location {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.event-address {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 300;
    /* Reduced from 400 */
    font-style: italic;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #878787;
    margin-bottom: 12px;
}

/* Removed incorrect italic font-face to allow browser synthesis */

.event-direction {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 300;
    /* Reduced from 400 */
    font-style: italic;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #878787;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-decoration-skip-ink: auto;
    text-underline-offset: 2px;
    /* Adjusted for better visibility */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 8px;
    width: 350px;
    height: 21px;
    margin-bottom: 0;
}

.event-direction:hover {
    text-decoration: underline;
}

.event-reception-details {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.event-note {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    color: #666;
    max-width: 500px;
    margin: 0 auto 20px;
}

.event-divider {
    font-size: 28px;
    margin: 40px 0;
}

.event-info {
    margin: 50px 0;
    padding: 30px 20px;
    background-color: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
}

.event-info-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.event-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.venue-illustration {
    margin: 40px 0;
}

.venue-illustration img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ===================================
   Section 4: Dress Code
   =================================== */
.dresscode-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.dresscode-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
    margin-top: -100px;
    /* Overlap with the image */
}

.dresscode-illustration {
    width: calc(100% + 48px);
    /* Break out of parent padding (24px * 2) */
    max-width: none;
    height: auto;
    margin: 0 -24px;
    /* Negative margin to pull image to edges */
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

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

.dresscode-title-d {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    font-style: normal;
    margin-right: 2px;
    transform: translateY(4px);
}

.dresscode-title-main {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', 'Didot', serif;
    font-weight: 400;
    font-size: 31px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-transform: uppercase;
}

.dresscode-item {
    margin-bottom: 40px;
}

.dresscode-label {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #727272;
    /* Updated color */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dresscode-value {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    color: #727272;
    /* Updated color */
    text-transform: uppercase;
}

.dresscode-palette {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #eee;
}

/* ===================================
   Section 4: RSVP Form
   =================================== */
.rsvp-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.rsvp-title {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rsvp-title-img {
    height: 80px;
    width: auto;
    display: block;
}

.rsvp-title-r {
    font-family: 'Lucia BT', 'Pinyon Script', cursive;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 0%;
    font-style: normal;
    background: linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 2px;
}

.rsvp-title-svp {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', 'Didot', serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    text-transform: uppercase;
    background: linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-10px);
    display: inline-block;
}

.rsvp-asterisk {
    color: #E92020;
    font-size: 24px;
    margin-left: 8px;
    align-self: flex-start;
    margin-top: 10px;
}

.rsvp-message {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0.05em;
    /* 5% */
    text-align: center;
    margin-bottom: 50px;
    color: #C7BAA3;
}

.rsvp-form {
    text-align: left;
}

.form-group {
    margin-bottom: 30px;
}

/* Horizontal layout for specific groups */
.form-group.horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.form-group.horizontal .form-label {
    margin-bottom: 0;
    /* Remove bottom margin for horizontal layout */
    flex-shrink: 0;
    /* Prevent label from shrinking */
}

.form-group.horizontal .form-select {
    width: auto;
    /* Auto width to fit content */
    border-bottom: none;
    /* Remove border from select itself */
    padding: 0;
    text-align: right;
    /* Align text to right */
    direction: rtl;
    /* Ensure arrow stays on left or handle via padding */
    padding-right: 20px;
    background-position: right center;
}

/* Fix for direction rtl on select options */
.form-group.horizontal .form-select option {
    direction: ltr;
}

.form-label {
    display: block;
    margin-bottom: 12px;
}

.code-group {
    margin-bottom: 40px;
}

.code-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.label-code {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #FFFFFF;
    /* Updated to white */
    text-transform: uppercase;
    margin-bottom: 0;
}

.dashed-separator {
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    /* White dashed line with 50% opacity */
}

.label-attend-the {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #C7BAA3;
    /* Updated color */
}

.label-name,
.label-friend {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #C7BAA3;
}

.label-attend,
.label-wishes {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #C7BAA3;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.required {
    color: #ff6b6b;
}

.form-note {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: #878787;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: left;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 12px 0;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #d4b896;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Register Forfelast Royalten font */
@font-face {
    font-family: 'Forfelast Royalten';
    src: url('../fonts/ForfelastRoyalten-wowK3.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.form-select {
    width: auto;
    /* Auto width to fit content */
    padding: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    /* Updated size */
    letter-spacing: 0.05em;
    /* 5% */
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    text-align: right;
    direction: rtl;
}

/* Ensure options are left-aligned if needed, or right aligned as per select */
.form-select option {
    direction: ltr;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.note-choose {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic !important;
    /* Ensure italic is applied */
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: rgba(199, 186, 163, 0.7);
    /* #C7BAA3B2 */
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: left;
}

.note-optional {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: rgba(199, 186, 163, 0.7);
    /* #C7BAA3B2 */
    margin-bottom: 8px;
    /* Reduced from 12px to bring textarea closer */
    text-transform: uppercase;
    text-align: left;
}

.dashed-separator-wishes {
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    /* Reduced from 10px */
}

.code-display {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    /* Updated size */
    line-height: 30px;
    /* Updated line-height */
    letter-spacing: 0.08em;
    /* 8% */
    color: #FFFFFF;
    /* Updated to white */
    text-transform: uppercase;
    text-align: right;
    color: #ffffff;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.checkbox-button {
    flex: 1;
    min-width: 140px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-button:hover {
    border-color: #d4b896;
}

.checkbox-button.active {
    background-color: #d4b896;
    color: #1a1a1a;
    border-color: #d4b896;
}

.textarea-container {
    /* Removed container styles */
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.form-textarea {
    width: 100%;
    min-height: 40px;
    /* Reduced initial height for closer spacing */
    max-height: 120px;
    /* Maximum height */
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-size: 14px;
    resize: none;
    outline: none;
    padding: 0;
    margin-bottom: 0;
    overflow-y: auto;
    /* Allow scrolling if content exceeds max-height */
}

.form-textarea::placeholder {
    color: #666;
}

.char-count {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    /* Updated size */
    line-height: 100%;
    letter-spacing: 0.05em;
    /* 5% */
    color: #D5D5D5;
    /* Updated color */
    text-align: right;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #C7BAA3;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    opacity: 0.9;
}

.submit-button:disabled {
    background: transparent;
    color: #C7BAA3;
    cursor: not-allowed;
    opacity: 1;
    border: 2px solid transparent;
    background-image: linear-gradient(#001925, #001925), linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.rsvp-actions-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (min-width: 768px) {
    .section {
        padding: 100px 48px 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-photo {
        max-width: 350px;
    }

    .celebrate-text {
        font-size: 36px;
    }

    .couple-name {
        font-size: 52px;
    }

    .couple-full-name {
        font-size: 22px;
    }

    .story-text {
        font-size: 14px;
    }

    .event-title,
    .story-title,
    .dress-code-title {
        font-size: 48px;
    }

    .rsvp-title {
        font-size: 60px;
    }
}

/* ===================================
   Responsive Design - Desktop
   =================================== */
@media (min-width: 1024px) {
    .section {
        padding: 120px 80px 100px;
    }

    .hero-content,
    .couple-content,
    .event-content,
    .rsvp-content {
        max-width: 700px;
    }

    .hero-title {
        font-size: 48px;
    }

    .wedding-date {
        font-size: 14px;
    }

    .wedding-venue {
        font-size: 12px;
    }

    .hero-photo {
        max-width: 400px;
    }

    .celebrate-text {
        font-size: 42px;
    }

    .couple-name {
        font-size: 64px;
    }

    .couple-full-name {
        font-size: 24px;
    }

    .story-text {
        font-size: 15px;
        max-width: 600px;
    }

    .checkbox-group {
        gap: 16px;
    }

    .checkbox-button {
        min-width: 160px;
    }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d4b896;
    outline-offset: 4px;
}

/* ===================================
   New RSVP UI Styles (Revamp)
   =================================== */

.guest-name-display {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.02em;
    /* 2% */
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 8px;
}

.event-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.event-selection-count {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 350;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #C7BAA3;
    margin-top: 8px;
    margin-bottom: 8px;
}

.event-card {
    background: transparent;
    border: 1px solid #45575F;
    /* Border for unselected */
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.event-card:hover {
    border-color: #45575F;
}

.event-card.selected {
    background-color: #C7BAA3;
    border-color: #C7BAA3;
}

.event-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid #45575F;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
}

.event-card.selected .custom-checkbox {
    background-color: #001925;
    /* Dark check box on beige bg */
    border-color: #001925;
    color: #C7BAA3;
    /* Checkmark color */
}

.event-card:not(.selected) .custom-checkbox {
    color: transparent;
    /* Hide checkmark when not selected */
}

.event-card-title {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    text-transform: capitalize;
}

.event-card.selected .event-card-title {
    color: #001925;
    font-weight: 700;
}

.event-card-details {
    padding-left: 36px;
    /* Align with title (checkbox width + gap) */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-card-date,
.event-card-location {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: #D2D2D2;
    text-transform: capitalize;
}

.event-card.selected .event-card-date,
.event-card.selected .event-card-location {
    color: #001925;
}

/* Custom Dropdown (replaces native select) */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown.disabled {
    opacity: 0.7;
    pointer-events: none;
}

.custom-dropdown-selected {
    border: 1px solid #5A6A75;
    border-radius: 8px;
    background-color: #001925;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.custom-dropdown-selected:hover {
    border-color: #C7BAA3;
}

.custom-dropdown.open .custom-dropdown-selected {
    border-color: #C7BAA3;
}

.selected-text {
    color: #ffffff;
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    vertical-align: middle;
    text-transform: capitalize;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #5A6A75;
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 100;
}

.custom-dropdown.open .custom-dropdown-options {
    display: block;
}

.custom-dropdown-option {
    padding: 16px;
    color: #001925;
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    text-transform: capitalize;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-dropdown-option:hover {
    background-color: #f5f5f5;
}

.custom-dropdown-option.selected {
    background-color: #e8e8e8;
}

/* Adjust label spacing */
.label-attend-the,
.label-attend {
    margin-bottom: 8px;
    display: block;
    color: #C7BAA3;
    /* Ensure labels are white */
}

/* ===================================
   Responsive Desktop Layout (Split 75/25)
   =================================== */

/* Left Side (Hidden on Mobile) */
.desktop-split-image {
    display: none;
}

/* Main Container (Full Width Mobile) */
.invitation-scroll-container {
    width: 100%;
    background-color: #001925;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    /* No fixed height on mobile – let content dictate height */
}

/* Mobile adjustments – ensure natural scrolling */
@media (max-width: 1023px) {
    .invitation-scroll-container {
        min-height: 100vh;
        /* Ensure at least full viewport height */
        overflow-y: auto;
        overflow-x: hidden;
    }

    body {
        overflow-y: auto;
        /* Allow native page scroll */
    }
}

/* Desktop layout – split screen */
@media (min-width: 1024px) {
    body {
        display: flex;
        height: 100vh;
        overflow: hidden;
    }

    .invitation-scroll-container {
        height: 100vh;
        /* Full height for desktop scroll container */
        overflow-y: auto;
        overflow-x: hidden;
    }

    .desktop-split-image {
        display: block;
        flex: 0 0 65%;
    }
}

.desktop-split-image {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.split-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    /* Align to right to prevent cropping couple on that side */
}

.split-image-overlay {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 10;
    pointer-events: none;
}

.split-text-wedding {
    font-family: 'Neue Haas Unica Pro', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #797979;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 100%;
    margin-top: 0;
}

.split-text-names {
    font-family: 'Forfelast Royalten', 'Bodoni Moda', serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    /* Gradient text effect */
    background: linear-gradient(95.94deg, #E4D9C6 -57.64%, #615B4F 4%, #C3B69F 57.66%, #615B4F 108.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0;
    padding-top: 5px;
    overflow: visible;
}

/* Right Panel Styles */
.invitation-scroll-container {
    flex: 0 0 35%;
    min-width: 400px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #001925;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

/* Adjust internal sections */
.section {
    min-height: auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* Adjust Hero for Right Panel Context */
.section-hero {
    min-height: auto;
    padding-top: 140px;
    /* Match spacing from index.html */
    padding-bottom: 60px;
}

/* Fix Right Panel Hero Image Sizing */
.hero-photo-container {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 40px;
    margin-bottom: -60px;
}

/* Fix Carousel sizes for Desktop Split Layout */
.section-carousel {
    padding: 0 !important;
    width: 100%;
}

.carousel-wrapper {
    width: 100%;
    margin-left: 0;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
}

/* Fix Event Photo Fullwidth */
.event-photo-fullwidth {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -10px;
    display: block;
}

.section-event {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
}

.event-details {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.event-item {
    margin-bottom: 0 !important;
}

.event-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Fix Story Photo Fullwidth (Our Story section) */
.story-photo-fullwidth {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -10px;
    display: block;
}

.story-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-couple {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
}

/* Fix Couple Photos (Daniel & Adeline portraits) */
.couple-photos {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
}

/* ===================================
   Small Phone Adjustments
   =================================== */
@media (max-width: 480px) {
    .carousel-title {
        letter-spacing: 0.15em;
        line-height: 1.6;
    }
}