:root {
    --color-bg: #FAFAF5;
    /* Soft Cream */
    --color-text: #3A4B25;
    /* Deep Olive Green */
    --color-gold: #C5A059;
    /* Muted Gold */
    --color-gold-light: #E5D0A0;
    --color-paper: #fafcfb;

    --font-heading: 'Cinzel', serif;
    --font-script: 'Pinyon Script', cursive;
    --font-body: 'Lato', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

@keyframes bgGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.4)); }
    50% { filter: drop-shadow(0 0 25px rgba(197, 160, 89, 0.8)); }
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 60px;
    /* Account for fixed header */
}

/* Background & Overlays */
#bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -3;
    background-image: url('assets/floral_bg_light_v2.png');
    background-size: cover;
    background-position: center;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

#blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

/* Header */
.elegant-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-header.scrolled {
    padding: 10px 20px;
    height: 60px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
}

.header-subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: 1px;
    text-transform: none;
    color: var(--color-gold);
    margin-bottom: 2px;
    transition: all 0.4s ease;
    opacity: 1;
    overflow: hidden;
    max-height: 80px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.9);
}

.scrolled .header-subtitle {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    padding: 0;
    text-shadow: none;
}

.header-title {
    font-family: var(--font-script);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.2;
    color: var(--color-text);
    font-weight: 400;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.scrolled .header-title {
    font-size: 1.8rem;
    line-height: 1;
}

#ampersand {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-gold);
    display: inline-block;
    cursor: pointer;
    margin: 0 10px;
    transition: transform 0.3s, font-size 0.5s, margin 0.5s;
    user-select: none;
}

.scrolled #ampersand {
    font-size: 1.2rem;
    margin: 0 5px;
}

/* Main Container Layout */
.page-scroll-container {
    padding: 240px 20px 80px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 60px);
}

.main-container {
    width: 100%;
    max-width: 800px;
    perspective: 1000px;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    /* Paper Noise */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-blend-mode: multiply;
}

/* Floral Decorations */
.floral-corner {
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url('../save-the-date/assets/floral_corner.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
}

.top-left {
    top: -30px;
    left: -30px;
    transform: rotate(0deg);
}

.top-right {
    top: -30px;
    right: -30px;
    transform: rotate(90deg);
}

.bottom-left {
    bottom: -30px;
    left: -30px;
    transform: rotate(-90deg);
}

.bottom-right {
    bottom: -30px;
    right: -30px;
    transform: rotate(180deg);
}

/* Content Elements */
.card-content {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-text {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 0px;
    color: var(--color-gold);
    font-weight: 400;
    text-shadow: 0 0 1px rgba(197, 160, 89, 0.2);
}

.divider-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 10px auto;
}

.divider-elegant::before,
.divider-elegant::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold));
}

.divider-elegant::after {
    background: linear-gradient(to left, transparent, var(--color-gold));
}

.divider-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin: 0 15px;
}

.invitation-detail {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 15px auto;
    color: var(--color-text);
    max-width: 85%;
    opacity: 0.9;
    font-style: italic;
}

.pre-date {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-gold);
    font-style: italic;
}

.date-hero {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4vw, 2rem);
    letter-spacing: 3px;
    color: var(--color-text);
}

.timeline {
    position: relative;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    background: var(--color-gold-light);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    text-align: left;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 5px;
    font-weight: 700;
}

.timeline-content {
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.timeline-item:last-child .timeline-content {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
}

.accordion-arrow {
    font-size: 0.9rem;
    color: var(--color-gold);
    transition: transform 0.4s ease;
}

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

.accordion-body {
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.accordion.open .accordion-body {
    max-height: 1000px;
    transition: max-height 0.5s ease-in-out;
}

.accordion-body-content {
    padding: 0 0 20px 0;
    padding-top: 10px;
    font-size: 1.1rem;
    font-style: italic;
}

.accordion-body-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.nav-link {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.rsvp-section {
    margin-top: 10px;
}

.rsvp-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 16px 35px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--color-gold);
    color: var(--color-text);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.btn.disabled {
    opacity: 0.5;
    background: rgba(200, 200, 200, 0.2);
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.virtual-section {
    margin: 20px 0;
    text-align: center;
}

.section-tag {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Countdown Style (Matches Save The Date) */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-unit span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
}

.time-unit label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 8px;
    color: var(--color-text);
    letter-spacing: 2px;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .countdown {
        gap: 10px;
    }

    .time-unit {
        min-width: 40px;
    }

    .time-unit span {
        font-size: 1.5rem;
    }

    .time-unit label {
        font-size: 0.6rem;
    }
}

.virtual-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-small {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--color-gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.btn-small:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-1px);
}

.remind-status {
    display: none;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-gold);
    font-style: italic;
}

/* Dresscode Section */
.dresscode-section {
    margin: 40px 0;
    text-align: center;
}

.dress-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.dress-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.dress-col p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.dresscode-note {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-top: 20px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 40px;
    text-align: center;
    background: rgba(250, 250, 245, 0.95);
    border-radius: 24px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    line-height: 1;
}

.modal-title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.modal-instruction {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--color-text);
    opacity: 0.8;
}

/* Checklist Styles */
.rsvp-checklist {
    text-align: left;
    margin-bottom: 30px;
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.rsvp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.3s ease;
}

.rsvp-item:last-child {
    border-bottom: none;
}

.rsvp-item:hover {
    background: rgba(197, 160, 89, 0.03);
}

.rsvp-item span {
    font-size: 1.1rem;
    color: var(--color-text);
}

/* Custom Checkbox */
.custom-checkbox {
    width: 24px;
    height: 24px;
    appearance: none;
    border: 2px solid var(--color-gold-light);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.custom-checkbox:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 16px;
    left: 4px;
    top: -1px;
}

/* RSVP Greeting */
.rsvp-greeting {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

/* RSVP Section Visibility Logic */
#rsvp-section {
    display: none !important;
}

#rsvp-section.show-rsvp {
    display: block !important;
}

.rsvp-greeting.show {
    opacity: 1;
    transform: translateY(0);
}
/* ── Personalized Message — Hero Overlay Card ── */
.message-envelope-trigger {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.message-envelope-trigger:hover {
    transform: scale(1.05);
}

.overlay-container {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay-container.active {
    opacity: 1;
    visibility: visible;
}

.overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(58, 75, 37, 0.4); /* deep olive semi-transparent */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.message-envelope {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: floating 4s ease-in-out infinite;
}

.envelope-front {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 450px;
    width: 100%;
    transition: all 0.3s ease;
}

.envelope-front:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(197, 160, 89, 0.5);
}

.envelope-seal {
    font-size: 4.5rem;
    margin-bottom: 20px;
    animation: bgGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(197,160,89,0.3));
    line-height: 1;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: #fffcf5; /* more solid background for the message */
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 4px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.overlay-container.active .hero-card {
    transform: scale(1);
}

.close-card-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--color-gold);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.close-card-btn:hover {
    color: var(--color-gold-light);
    transform: rotate(90deg);
}

.hero-card-content {
    padding: 60px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-light) transparent;
}

/* Custom Scrollbar */
.hero-card-content::-webkit-scrollbar {
    width: 6px;
}
.hero-card-content::-webkit-scrollbar-track {
    background: transparent;
}
.hero-card-content::-webkit-scrollbar-thumb {
    background-color: var(--color-gold-light);
    border-radius: 20px;
}

.hero-message-title {
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    color: var(--color-gold);
    margin-bottom: 25px;
    line-height: 1;
}

.hero-message-body {
    max-width: 90%;
    margin: 0 auto;
}

#hero-personalized-message {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    line-height: 1.8;
    color: var(--color-text);
    white-space: pre-wrap; /* critical for multiline messages */
}

/* Decoration */
.floral-decoration {
    width: 60px;
    height: 40px;
    background-image: url('assets/flowers-top-decoration.png'); /* If available, or use border */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.floral-decoration.top { margin-bottom: 20px; }
.floral-decoration.bottom { margin-top: 40px; transform: rotate(180deg); }

@media (max-width: 600px) {
    .overlay-container { padding: 15px; }
    .hero-card { max-height: 90vh; }
    .hero-card-content { padding: 45px 25px; }
    .hero-message-title { font-size: 2.2rem; margin-bottom: 20px; }
    #hero-personalized-message { font-size: 1.15rem; line-height: 1.6; }
}

/* Success/Error States */
.modal-success-msg,
.modal-error-msg {
    padding: 20px 0;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

body.modal-open {
    overflow: hidden;
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content.animate-scale {
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-delay-1 {
    transition-delay: 0.1s;
}

.fade-delay-2 {
    transition-delay: 0.2s;
}

.fade-delay-3 {
    transition-delay: 0.3s;
}

#btn-submit-rsvp {
    display: block;
    margin: 30px auto 0;
}

#btn-rsvp.confirmed {
    background: #94a3b8 !important;
    border-color: #94a3b8 !important;
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.8;
}

#btn-close-success {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .elegant-header {
        padding: 10px 10px 5px 10px;
    }

    .header-subtitle {
        font-size: 1.6rem;
        letter-spacing: 0;
        margin-bottom: 2px;
        max-height: 70px;
    }

    .header-title {
        font-size: 2.4rem;
        line-height: 1;
    }

    .scrolled .header-title {
        font-size: 1.4rem;
    }

    .card {
        padding: 30px 15px;
    }

    .intro-text {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }

    .floral-corner {
        width: 120px;
        height: 120px;
        opacity: 0.6;
    }

    .top-left {
        top: -10px;
        left: -10px;
    }

    .top-right {
        top: -10px;
        right: -10px;
    }

    .bottom-left {
        bottom: -10px;
        left: -10px;
    }

    .bottom-right {
        bottom: -10px;
        right: -10px;
    }

    .page-scroll-container {
        padding: 40px 10px 60px 10px;
        margin-top: 0;
    }

    .timeline {
        gap: 15px;
    }

    .dress-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dress-col {
        padding: 20px;
    }

    .detail-section {
        padding: 10px;
        min-width: 100%;
    }
}