/* ===================================
   Romantic Floral Watercolor Wedding Template
   Palette: Blush (#F4C2C2), Lavender (#E6E6FA), Soft Beige (#EDE8E3)
   Brizbriz Level: High
   =================================== */

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

:root {
    /* Color Palette - Watercolor */
    --color-blush: #F4C2C2;           /* Blush - primary */
    --color-blush-dark: #E8A5A5;      /* Darker blush */
    --color-lavender: #E6E6FA;        /* Lavender - accents */
    --color-lavender-dark: #C8A2D0;   /* Darker lavender */
    --color-soft-beige: #EDE8E3;      /* Soft Beige - background */
    --color-cream: #F9F6F3;           /* Cream - light background */
    --color-purple-muted: #7B5B8F;    /* Muted Purple - text */
    --color-text-dark: #4A3F47;       /* Dark purple-gray */
    --color-text-medium: #6B5B68;     /* Medium text */
    
    /* Typography - Watercolor Soft */
    --font-script: 'Dancing Script', cursive;
    --font-display: 'Great Vibes', cursive;
    --font-body: 'Quicksand', sans-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.7;
    color: var(--color-text-dark);
    background: var(--color-cream);
    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;
}

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

/* ===================================
   Header Sticky
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(244, 194, 194, 0.15);
    transition: var(--transition-smooth);
    border-bottom: 2px dashed rgba(200, 162, 208, 0.2);
}

.header.scrolled {
    padding: 0.2rem 0;
    box-shadow: 0 4px 30px rgba(244, 194, 194, 0.25);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 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.08) rotate(-5deg);
}

.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-script);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text-medium);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blush) 0%, var(--color-lavender) 100%);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-purple-muted);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.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-blush);
    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;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-cream);
        padding: 6rem 2rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: 4px 0 30px rgba(244, 194, 194, 0.25);
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===================================
   Hero Section with Animated Watercolor Splashes
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #EDE8E3 0%, #F9F6F3 100%);
}

.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-watercolor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(244, 194, 194, 0.75) 0%,
        rgba(230, 230, 250, 0.70) 50%,
        rgba(244, 194, 194, 0.75) 100%
    );
    backdrop-filter: blur(2px);
}

/* Animated Watercolor Splashes */
.watercolor-splash {
    position: absolute;
    z-index: 2;
    opacity: 0.6;
}

.watercolor-splash img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 15px rgba(244, 194, 194, 0.3));
}

.splash-1 {
    top: 80px;
    left: 50px;
    width: 250px;
    height: 250px;
    animation: watercolorPulse1 8s ease-in-out infinite;
}

.splash-2 {
    top: 80px;
    right: 50px;
    width: 250px;
    height: 250px;
    animation: watercolorPulse2 9s ease-in-out infinite;
}

.splash-3 {
    bottom: 80px;
    left: 100px;
    width: 200px;
    height: 200px;
    animation: watercolorPulse3 10s ease-in-out infinite;
}

.splash-4 {
    bottom: 80px;
    right: 100px;
    width: 200px;
    height: 200px;
    animation: watercolorPulse4 11s ease-in-out infinite;
}

@keyframes watercolorPulse1 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes watercolorPulse2 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.12) rotate(-5deg);
        opacity: 0.75;
    }
}

@keyframes watercolorPulse3 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(3deg);
        opacity: 0.7;
    }
}

@keyframes watercolorPulse4 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.08) rotate(-3deg);
        opacity: 0.65;
    }
}

@media (max-width: 768px) {
    .watercolor-splash {
        width: 150px !important;
        height: 150px !important;
        opacity: 0.4;
    }
    
    .splash-1 { top: 70px; left: 20px; }
    .splash-2 { top: 70px; right: 20px; }
    .splash-3 { bottom: 60px; left: 30px; }
    .splash-4 { bottom: 60px; right: 30px; }
}

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

.hero-greeting {
    font-family: var(--font-script);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.bride-name,
.groom-name {
    display: block;
}

.ampersand {
    font-size: 5rem;
    font-family: var(--font-display);
    color: var(--color-blush);
    opacity: 0.95;
    margin: 0.2rem 0;
    filter: drop-shadow(0 3px 10px rgba(244, 194, 194, 0.5));
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    .ampersand {
        font-size: 3rem;
    }
    .hero-greeting {
        font-size: 1.1rem;
    }
}

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

.hero-date-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.date-main,
.location-main {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-cream);
}

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

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    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-body);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1;
    min-width: 70px;
    text-align: center;
    text-shadow: 0 3px 15px rgba(244, 194, 194, 0.5);
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-cream);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .countdown {
        gap: 1rem;
    }
    
    .countdown-value {
        font-size: 2.2rem;
        min-width: 50px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Godparents */
.godparents {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px dashed rgba(230, 230, 250, 0.4);
}

.godparents-intro {
    font-family: var(--font-script);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-cream);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.godparents-names {
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-cream);
    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: 5rem;
    font-weight: 400;
    color: var(--color-purple-muted);
    margin-bottom: 1.5rem;
}

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

.section-subtitle {
    font-family: var(--font-script);
    font-size: 1.3rem;
    font-weight: 500;
    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: 3.5rem;
    }
}

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

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/textures/texture-watercolor.png');
    opacity: 0.05;
    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: 4.5rem;
    font-family: var(--font-display);
    float: left;
    line-height: 0.8;
    margin: 0 0.5rem 0 0;
    color: var(--color-blush);
}

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

.story-image {
    order: 2;
}

.image-watercolor-frame {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.image-watercolor-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 4px dashed var(--color-lavender-dark);
    padding: 12px;
    background: var(--color-cream);
    box-shadow: 0 15px 50px rgba(200, 162, 208, 0.3);
}

.watercolor-border {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.4;
}

.watercolor-border-tl {
    top: -20px;
    left: -20px;
    background: radial-gradient(circle, var(--color-blush) 0%, transparent 70%);
}

.watercolor-border-tr {
    top: -20px;
    right: -20px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
}

.watercolor-border-bl {
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
}

.watercolor-border-br {
    bottom: -20px;
    right: -20px;
    background: radial-gradient(circle, var(--color-blush) 0%, transparent 70%);
}

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

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

.couple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/textures/texture-watercolor.png');
    opacity: 0.04;
    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;
}

/* HEXAGON Shape */
.couple-hexagon-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 2.5rem;
}

.hexagon {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition-smooth);
}

.couple-card:hover .hexagon {
    transform: scale(1.05) rotate(3deg);
}

.hexagon-inner {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 8px solid var(--color-cream);
}

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

/* Watercolor accents around hexagon */
.watercolor-accent {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.accent-1 {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-blush) 0%, transparent 70%);
}

.accent-2 {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
}

.couple-card:hover .watercolor-accent {
    opacity: 0.5;
}

.couple-card:hover .accent-1 {
    transform: translateX(-50%) scale(1.2);
}

.couple-card:hover .accent-2 {
    transform: translateX(-50%) scale(1.15);
}

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

.couple-name {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-purple-muted);
    margin-bottom: 0.3rem;
}

.couple-role {
    font-family: var(--font-script);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-blush);
    margin-bottom: 2rem;
}

.couple-divider-small {
    width: 60px;
    margin: 0 auto 2rem;
    opacity: 0.7;
}

.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-hexagon-wrapper {
        width: 260px;
        height: 260px;
    }
    
    .couple-name {
        font-size: 2.8rem;
    }
}

/* ===================================
   Events Section - Interactive TABS
   =================================== */
.events {
    padding: var(--spacing-xl) 0;
    background: var(--color-soft-beige);
    position: relative;
}

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

/* Tab Navigation */
.events-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.8rem 2.5rem;
    background: var(--color-cream);
    border: 3px dashed var(--color-lavender-dark);
    border-radius: 20px;
    font-family: var(--font-script);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(200, 162, 208, 0.15);
}

.tab-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(200, 162, 208, 0.25);
    background: linear-gradient(135deg, var(--color-cream) 0%, rgba(230, 230, 250, 0.3) 100%);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender) 100%);
    border-color: var(--color-blush);
    color: var(--color-cream);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(244, 194, 194, 0.35);
}

.tab-icon {
    font-size: 2.5rem;
}

.tab-title {
    display: block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .events-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Tab Content */
.events-content {
    max-width: 1100px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

/* Event Layout */
.event-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: var(--color-cream);
    border-radius: 20px;
    padding: 3rem;
    border: 3px dashed var(--color-lavender-dark);
    box-shadow: 0 15px 50px rgba(200, 162, 208, 0.2);
}

.event-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(123, 91, 143, 0.2);
}

.event-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.watercolor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 194, 194, 0.2) 0%, rgba(230, 230, 250, 0.2) 100%);
}

.event-details-side {
    padding: 1rem;
}

.event-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-purple-muted);
    margin-bottom: 2.5rem;
}

.event-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.event-info-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.8;
}

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

.info-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-blush);
    text-transform: uppercase;
}

.info-value {
    font-family: var(--font-script);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.info-address {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.event-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--color-text-medium);
    margin-bottom: 2.5rem;
}

.event-map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender) 100%);
    color: var(--color-cream);
    font-family: var(--font-script);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(244, 194, 194, 0.3);
}

.event-map-button img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.event-map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 194, 194, 0.4);
}

@media (max-width: 968px) {
    .event-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .event-title {
        font-size: 2.8rem;
    }
    
    .event-image-wrapper img {
        height: 300px;
    }
}

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

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

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

.rsvp-form {
    background: var(--color-soft-beige);
    border: 3px dashed var(--color-lavender-dark);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(200, 162, 208, 0.2);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-script);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-input,
.form-textarea {
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    background: var(--color-cream);
    border: 2px dashed var(--color-lavender-dark);
    border-radius: 10px;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-blush);
    box-shadow: 0 0 0 4px rgba(244, 194, 194, 0.15);
}

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

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

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

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

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender) 100%);
    color: var(--color-cream);
    font-family: var(--font-script);
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(244, 194, 194, 0.3);
}

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

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 194, 194, 0.4);
}

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

.form-message.success {
    background: rgba(144, 238, 144, 0.2);
    color: #2d7a2d;
    border: 2px dashed #90ee90;
}

.form-message.error {
    background: rgba(255, 99, 71, 0.2);
    color: #c42e1f;
    border: 2px dashed #ff6347;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender-dark) 100%);
    color: var(--color-cream);
    text-align: center;
    position: relative;
}

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

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1);
}

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

.footer-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.footer-date {
    font-family: var(--font-script);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.footer-location {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
}

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

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

.footer-link {
    font-family: var(--font-script);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-cream);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(249, 246, 243, 0.3);
}

/* ===================================
   Scroll Reveal Animations
   =================================== */
.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(40px);
}

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

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

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

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

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

/* Hero animations */
.fade-in {
    animation: fadeIn 1.2s ease-in-out 0.3s both;
}

.fade-in-up {
    animation: fadeInUp 1.2s ease-in-out 0.6s both;
}

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

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

/* ===================================
   Prefers Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .watercolor-splash {
        animation: none !important;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .footer,
    .countdown,
    .rsvp {
        display: none;
    }
    
    body {
        background: white;
    }
}


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