/* ROMANTIC ROSE GARDEN - Deep Rose + Ivory + Gold */
/* Design: Elegant, Sophisticated, Floral Premium */

:root {
    --color-deep-rose: #8B2E46;
    --color-rose: #C94D68;
    --color-rose-light: #E8B4BC;
    --color-ivory: #FDFAF5;
    --color-cream: #F5F0E8;
    --color-gold: #C9A961;
    --color-gold-light: #E8D4A0;
    --color-charcoal: #2B2426;
    --color-text: #4A3C3E;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

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

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 250, 245, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(139, 46, 70, 0.08);
    z-index: 1000;
    transition: all 0.3s var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(139, 46, 70, 0.12);
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.brand {
    display: flex;
    align-items: center;
}

.monogram-shield {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-deep-rose);
    padding: 12px 20px;
    border: 2px solid var(--color-deep-rose);
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(232, 180, 188, 0.15), rgba(201, 77, 104, 0.08));
}

.monogram-shield span {
    display: inline-block;
}

.shield-divider {
    width: 1px;
    height: 24px;
    background: var(--color-gold);
    margin: 0 4px;
}

.monogram-shield.small {
    font-size: 20px;
    padding: 8px 14px;
}

.monogram-shield.small .shield-divider {
    height: 18px;
}

.navigation {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-rose), transparent);
    transition: transform 0.3s var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--color-rose);
}

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

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.menu-trigger span {
    width: 26px;
    height: 2px;
    background: var(--color-deep-rose);
    transition: all 0.3s var(--transition-smooth);
}

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

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

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

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 46, 70, 0.88) 0%, rgba(201, 77, 104, 0.75) 50%, rgba(232, 180, 188, 0.82) 100%);
    z-index: -1;
}

.rose-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.rose-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--color-rose-light), var(--color-rose));
    border-radius: 50% 50% 0 50%;
    opacity: 0;
    animation: floatRose 12s infinite ease-in-out;
}

.rose-particle:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
}

.rose-particle:nth-child(2) {
    left: 35%;
    animation-delay: 3s;
}

.rose-particle:nth-child(3) {
    left: 55%;
    animation-delay: 6s;
}

.rose-particle:nth-child(4) {
    left: 75%;
    animation-delay: 9s;
}

.rose-particle:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
}

@keyframes floatRose {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-ivory);
    max-width: 880px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-ivory);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.connector-symbol {
    font-size: 48px;
    opacity: 0.9;
    margin: 8px 0;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    font-size: 18px;
}

.meta-separator {
    opacity: 0.6;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-ivory);
    min-width: 80px;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.countdown-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.godparents-panel {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.godparents-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

.godparents-names {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
}

/* SECTION STYLING */
section {
    padding: 120px 40px;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 72px;
}

.section-pretitle {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-rose);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-deep-rose);
    line-height: 1.2;
}

/* STORY SECTION */
.story-section {
    background: var(--color-cream);
}

.story-content {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-side {
    position: relative;
}

.image-wrapper-complex {
    position: relative;
    padding: 24px;
}

.image-frame-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    transform: rotate(-2deg);
}

.image-wrapper-complex img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(139, 46, 70, 0.2);
}

.image-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-rose);
}

.image-accent.top-left {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.image-accent.bottom-right {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.story-text-side {
    padding: 20px 0;
}

.story-paragraph {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
}

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

/* COUPLE SECTION */
.couple-section {
    background: var(--color-ivory);
}

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

.bride-profile, .groom-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s var(--transition-smooth);
}

.bride-profile:hover, .groom-profile:hover {
    transform: translateY(-12px);
}

.profile-image-container {
    margin-bottom: 32px;
    position: relative;
}

.portrait-frame {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(139, 46, 70, 0.15);
    transition: all 0.4s var(--transition-smooth);
}

.bride-frame {
    border: 3px solid var(--color-rose);
}

.groom-frame {
    border: 3px solid var(--color-gold);
}

.bride-profile:hover .portrait-frame, .groom-profile:hover .portrait-frame {
    box-shadow: 0 24px 64px rgba(139, 46, 70, 0.25);
}

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

.frame-ornament.tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.frame-ornament.tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

.frame-ornament.bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
}

.frame-ornament.br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth);
}

.bride-profile:hover .profile-photo, .groom-profile:hover .profile-photo {
    transform: scale(1.05);
}

.profile-details {
    max-width: 320px;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-deep-rose);
    margin-bottom: 8px;
}

.profile-designation {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-rose);
    margin-bottom: 20px;
}

.profile-description {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
}

/* EVENTS SECTION */
.events-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-ivory) 100%);
}

.events-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.event-panel {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 46, 70, 0.1);
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.event-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(139, 46, 70, 0.18);
}

.event-visual-block {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-image-container {
    width: 100%;
    height: 100%;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.event-panel:hover .event-image-container img {
    transform: scale(1.08);
}

.event-badge-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-badge-indicator i {
    font-size: 24px;
    color: var(--color-rose);
}

.event-content-block {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-heading {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-deep-rose);
    margin-bottom: 20px;
}

.event-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 12px;
}

.event-info-row i {
    font-size: 18px;
    color: var(--color-rose);
}

.event-location-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.event-location-block i {
    font-size: 18px;
    color: var(--color-rose);
    margin-top: 2px;
}

.location-text {
    flex: 1;
}

.location-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-deep-rose);
    margin-bottom: 4px;
}

.location-address {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.5;
}

.event-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-rose);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--color-rose);
    border-radius: 4px;
    transition: all 0.3s var(--transition-smooth);
    margin-top: auto;
}

.event-map-link:hover {
    background: var(--color-rose);
    color: white;
}

/* RSVP SECTION */
.rsvp-section {
    background: var(--color-cream);
}

.rsvp-wrapper {
    background: white;
    padding: 56px 48px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(139, 46, 70, 0.12);
}

.rsvp-introduction {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.rsvp-form {
    max-width: 680px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-deep-rose);
}

.form-input, .form-textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid #E0D5D0;
    border-radius: 4px;
    background: var(--color-ivory);
    color: var(--color-text);
    transition: all 0.3s var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-rose);
    box-shadow: 0 0 0 3px rgba(201, 77, 104, 0.1);
}

.radio-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-rose);
    cursor: pointer;
}

.form-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: linear-gradient(135deg, var(--color-deep-rose), var(--color-rose));
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    margin-top: 12px;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 46, 70, 0.3);
}

.form-notification {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-notification.success {
    display: block;
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #4CAF50;
}

.form-notification.error {
    display: block;
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #F44336;
}

/* FOOTER */
.footer-section {
    background: var(--color-deep-rose);
    color: var(--color-ivory);
    padding: 60px 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-ivory);
}

.footer-date {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
}

.footer-navigation {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-navigation a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-ivory);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s var(--transition-smooth);
}

.footer-navigation a:hover {
    opacity: 1;
}

.footer-message {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    opacity: 0.85;
}

/* REVEAL ANIMATIONS */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .events-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .couple-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

@media (max-width: 768px) {
    .container, .container-narrow {
        padding: 0 24px;
    }
    
    section {
        padding: 80px 24px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(253, 250, 245, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 20px 24px;
        box-shadow: 0 8px 24px rgba(139, 46, 70, 0.15);
        transform: translateY(-130%);
        transition: transform 0.4s var(--transition-smooth);
    }
    
    .navigation.active {
        transform: translateY(0);
    }
    
    .nav-item {
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-trigger {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 24px 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .connector-symbol {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .countdown-container {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
    }
    
    .countdown-unit {
        flex-shrink: 0;
    }
    
    .countdown-number {
        font-size: 40px;
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .countdown-text {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .rsvp-wrapper {
        padding: 40px 28px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .portrait-frame {
        width: 280px;
        height: 350px;
    }
}


