/* ===================================
   Romantic Floral Luxury Wedding Template
   Palette: Deep Red (#8B1E3F), Ivory (#FAF7F2), Antique Gold (#C9A961)
   Brizbriz Level: High
   =================================== */

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

:root {
    /* Color Palette - Luxury */
    --color-deep-red: #8B1E3F;        /* Deep Red - primary */
    --color-burgundy: #6B1530;        /* Darker burgundy */
    --color-ivory: #FAF7F2;           /* Ivory - background */
    --color-cream: #F5F1EB;           /* Light cream */
    --color-antique-gold: #C9A961;    /* Antique Gold - accents */
    --color-gold-dark: #A88640;       /* Darker gold */
    --color-text-dark: #2B2520;       /* Rich dark brown */
    --color-text-medium: #5A504A;     /* Medium brown */
    
    /* Typography - Luxury Serif */
    --font-display: 'Cinzel', serif;
    --font-decorative: 'Cormorant Garamond', serif;
    --font-body: 'Libre Baskerville', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text-dark);
    background: var(--color-ivory);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

@media (max-width: 768px) {
    .container,
    .container-full {
        padding: 0 1.5rem;
    }
}

/* ===================================
   Header Sticky
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 30, 63, 0.08);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.header.scrolled {
    padding: 0.2rem 0;
    box-shadow: 0 4px 30px rgba(139, 30, 63, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 60px;
    height: 60px;
    transition: var(--transition-smooth);
}

.header-logo:hover {
    transform: scale(1.05);
}

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

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-medium);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-antique-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-deep-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-deep-red);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-ivory);
        padding: 6rem 2rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -4px 0 30px rgba(139, 30, 63, 0.2);
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
}

/* ===================================
   Hero Section with Parallax
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-text-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(43, 37, 32, 0.75) 0%,
        rgba(139, 30, 63, 0.70) 50%,
        rgba(43, 37, 32, 0.75) 100%
    );
    backdrop-filter: blur(1px);
}

/* Large Rose Ornaments */
.hero-rose-ornament {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 2;
    opacity: 0.9;
}

.hero-rose-ornament img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-rose-left {
    top: 100px;
    left: 40px;
}

.hero-rose-right {
    top: 100px;
    right: 40px;
}

@media (max-width: 768px) {
    .hero-rose-ornament {
        width: 120px;
        height: 120px;
        opacity: 0.7;
    }
    
    .hero-rose-left {
        top: 80px;
        left: 15px;
    }
    
    .hero-rose-right {
        top: 80px;
        right: 15px;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-antique-gold);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-antique-gold);
    border-radius: 30px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-ivory);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bride-name,
.groom-name {
    display: block;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.ampersand {
    font-size: 3.5rem;
    font-family: var(--font-decorative);
    font-style: italic;
    font-weight: 400;
    color: var(--color-antique-gold);
    opacity: 0.95;
    margin: 0.3rem 0;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .ampersand {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .ampersand {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1.2rem;
    }
}

.hero-divider {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.hero-date-elegant {
    margin-bottom: 3rem;
}

.date-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-antique-gold);
}

.date-main {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-ivory);
    letter-spacing: 0.02em;
}

.date-location {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-ivory);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .date-main {
        font-size: 1.8rem;
    }
    
    .date-location {
        font-size: 0.9rem;
    }
}

/* Countdown with Separators */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

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

.countdown-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-antique-gold);
    line-height: 1;
    min-width: 80px;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ivory);
    opacity: 0.9;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-antique-gold);
    opacity: 0.6;
    margin-top: -1.5rem;
}

@media (max-width: 768px) {
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
        min-width: 55px;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
        margin-top: -1rem;
    }
}

/* Godparents */
.godparents {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.godparents-intro {
    font-family: var(--font-decorative);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-ivory);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.godparents-names {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--color-ivory);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .godparents-names {
        font-size: 1.7rem;
    }
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-deep-red);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.section-divider {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.section-subtitle {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-medium);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: var(--spacing-md);
        padding-top: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* ===================================
   Story Section
   =================================== */
.story {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/textures/texture-luxury.png');
    opacity: 0.04;
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text {
    order: 1;
}

.story-paragraph {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--color-text-medium);
    margin-bottom: 1.8rem;
}

.story-paragraph:first-letter {
    font-size: 4rem;
    font-family: var(--font-display);
    float: left;
    line-height: 0.8;
    margin: 0.1rem 0.6rem 0 0;
    color: var(--color-deep-red);
    font-weight: 600;
}

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

.story-image {
    order: 2;
}

.image-frame-luxury {
    position: relative;
    padding: 20px;
}

.frame-gold-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--color-antique-gold);
    border-radius: 4px;
    box-shadow: 
        inset 0 0 0 2px var(--color-ivory),
        0 10px 40px rgba(139, 30, 63, 0.2);
}

.image-frame-luxury img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-antique-gold);
    z-index: 2;
}

.frame-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.frame-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
}

/* ===================================
   Couple Section with Square Frames
   =================================== */
.couple {
    padding: var(--spacing-xl) 0;
    background: var(--color-ivory);
    position: relative;
}

.couple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/textures/texture-luxury.png');
    opacity: 0.03;
    pointer-events: none;
}

.couple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.couple-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Square Frame with Gold Border */
.couple-image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin-bottom: 2.5rem;
    padding: 15px;
}

.frame-gold-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid var(--color-antique-gold);
    box-shadow: 
        inset 0 0 0 3px var(--color-ivory),
        inset 0 0 0 6px var(--color-deep-red),
        inset 0 0 0 8px var(--color-ivory),
        0 15px 50px rgba(139, 30, 63, 0.25);
    transition: var(--transition-smooth);
}

.couple-card:hover .frame-gold-outer {
    box-shadow: 
        inset 0 0 0 3px var(--color-ivory),
        inset 0 0 0 6px var(--color-deep-red),
        inset 0 0 0 8px var(--color-ivory),
        0 20px 60px rgba(139, 30, 63, 0.35);
}

.frame-gold-inner {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border: 1px solid var(--color-antique-gold);
    opacity: 0.6;
}

.couple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
    transition: var(--transition-slow);
}

.couple-card:hover .couple-image {
    transform: scale(1.03);
}

/* Rose Accents in Corners */
.frame-rose-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--color-deep-red);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(139, 30, 63, 0.4);
}

.frame-rose-tl {
    top: -5px;
    left: -5px;
}

.frame-rose-tr {
    top: -5px;
    right: -5px;
}

.frame-rose-bl {
    bottom: -5px;
    left: -5px;
}

.frame-rose-br {
    bottom: -5px;
    right: -5px;
}

.couple-info {
    position: relative;
    z-index: 4;
}

.couple-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-deep-red);
    margin-bottom: 0.3rem;
    letter-spacing: 0.03em;
}

.couple-role {
    font-family: var(--font-decorative);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-antique-gold);
    margin-bottom: 2rem;
}

.couple-divider-small {
    width: 60px;
    margin: 0 auto 2rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.couple-card:hover .couple-divider-small {
    opacity: 1;
    transform: scale(1.1);
}

.couple-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--color-text-medium);
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .couple-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .couple-image-frame {
        max-width: 320px;
    }
    
    .couple-name {
        font-size: 2.4rem;
    }
}

/* ===================================
   Events Section - Horizontal Carousel
   =================================== */
.events {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/textures/texture-luxury.png');
    opacity: 0.04;
    pointer-events: none;
}

.events-carousel {
    position: relative;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: hidden;
}

.events-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card {
    min-width: calc(33.333% - 1.333rem);
    background: var(--color-ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 30, 63, 0.15);
    border: 2px solid var(--color-antique-gold);
    position: relative;
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 30, 63, 0.25);
}

.event-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-antique-gold);
    opacity: 0.3;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.event-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-gold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 30, 63, 0.3) 0%,
        transparent 50%,
        rgba(201, 169, 97, 0.3) 100%
    );
    pointer-events: none;
}

.event-icon-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--color-ivory);
    border: 3px solid var(--color-antique-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.event-icon-badge img {
    width: 38px;
    height: 38px;
}

.event-content {
    padding: 2.5rem 2rem;
}

.event-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-deep-red);
    margin-bottom: 1.8rem;
    letter-spacing: 0.02em;
}

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

.event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-medium);
}

.event-detail-item img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.event-detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.event-detail-item strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

.event-address {
    font-size: 0.85rem;
    opacity: 0.8;
}

.event-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: var(--color-deep-red);
    color: var(--color-ivory);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(139, 30, 63, 0.3);
}

.event-button svg {
    transition: var(--transition-smooth);
}

.event-button:hover {
    background: var(--color-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 30, 63, 0.4);
}

.event-button:hover svg {
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-ivory);
    border: 2px solid var(--color-antique-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 30, 63, 0.2);
}

.carousel-nav:hover {
    background: var(--color-deep-red);
    border-color: var(--color-deep-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover svg {
    stroke: var(--color-ivory);
}

.carousel-nav svg {
    stroke: var(--color-deep-red);
    transition: var(--transition-smooth);
}

.carousel-nav-prev {
    left: 20px;
}

.carousel-nav-next {
    right: 20px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: var(--color-ivory);
    border-color: var(--color-antique-gold);
    transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--color-antique-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.4;
}

.carousel-dot:hover {
    opacity: 0.7;
}

.carousel-dot.active {
    opacity: 1;
    background: var(--color-deep-red);
    transform: scale(1.3);
}

@media (max-width: 968px) {
    .event-card {
        min-width: calc(50% - 1rem);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .event-card {
        min-width: calc(100% - 2rem);
    }
    
    .event-image-wrapper {
        height: 250px;
    }
    
    .carousel-nav {
        display: none;
    }
}

/* ===================================
   RSVP Section
   =================================== */
.rsvp {
    padding: var(--spacing-xl) 0;
    background: var(--color-ivory);
}

.rsvp-content {
    max-width: 800px;
    margin: 0 auto;
}

.rsvp-form {
    background: var(--color-cream);
    padding: 3.5rem;
    border-radius: 8px;
    border: 3px solid var(--color-antique-gold);
    box-shadow: 
        inset 0 0 0 2px var(--color-ivory),
        0 15px 50px rgba(139, 30, 63, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 0.6rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.3rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: var(--color-ivory);
    border: 2px solid var(--color-antique-gold);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-deep-red);
    box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: var(--color-deep-red);
    cursor: pointer;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ivory);
    background: var(--color-deep-red);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(139, 30, 63, 0.3);
}

.form-submit img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.form-submit:hover {
    background: var(--color-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 30, 63, 0.4);
}

.form-submit:active {
    transform: translateY(-1px);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
}

.form-message.success {
    background: rgba(201, 169, 97, 0.15);
    color: var(--color-gold-dark);
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.form-message.error {
    background: rgba(139, 30, 63, 0.15);
    color: var(--color-burgundy);
    border: 2px solid rgba(139, 30, 63, 0.3);
}

@media (max-width: 768px) {
    .rsvp-form {
        padding: 2.5rem 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--color-deep-red);
    color: var(--color-ivory);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin: 0 auto 2.5rem;
}

.footer-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-main {
    margin-bottom: 2.5rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.footer-date,
.footer-location {
    font-family: var(--font-decorative);
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.footer-divider {
    width: 400px;
    max-width: 100%;
    margin: 0 auto 2rem;
    opacity: 0.7;
}

.footer-divider img {
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-antique-gold);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in,
.fade-in-up {
    opacity: 1;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation-name: fadeIn;
}

.fade-in-up {
    animation-name: fadeInUp;
}

/* Reveal on Scroll */
.reveal-fade-in,
.reveal-fade-in-up,
.reveal-fade-in-left,
.reveal-fade-in-right {
    opacity: 0;
    transition: var(--transition-slow);
}

.reveal-fade-in.revealed {
    opacity: 1;
}

.reveal-fade-in-up {
    transform: translateY(50px);
}

.reveal-fade-in-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade-in-left {
    transform: translateX(-50px);
}

.reveal-fade-in-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-fade-in-right {
    transform: translateX(50px);
}

.reveal-fade-in-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal-fade-in,
    .reveal-fade-in-up,
    .reveal-fade-in-left,
    .reveal-fade-in-right {
        opacity: 1;
        transform: none;
    }
}


/* Fix for long text without spaces */
.story-paragraph,
.couple-bio,
.event-description,
.event-address {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* RSVP Messages - Hidden by default */
.rsvp-message {
    display: none;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.rsvp-message.show {
    display: block;
}

.rsvp-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.rsvp-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
