/* SPRING BLOSSOM - Soft Pink + White + Green */
/* Design: Fresh, Elegant, Romantic Spring */

:root {
    --color-soft-pink: #FFB6C8;
    --color-pink: #FF9FB5;
    --color-white: #FFFFFF;
    --color-cream-white: #FEFCFB;
    --color-green: #7FB285;
    --color-green-light: #A8D5A8;
    --color-green-dark: #5A8B5F;
    --color-charcoal: #3D3836;
    --color-text: #5A4F4D;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-cream-white);
    line-height: 1.6;
    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(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 12px rgba(127, 178, 133, 0.1);
    z-index: 1000;
    transition: all 0.3s var(--ease-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(127, 178, 133, 0.15);
}

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

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

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

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

.monogram-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-green);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 182, 200, 0.1), rgba(168, 213, 168, 0.1));
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-green-dark);
}

.monogram-circle .initial {
    font-style: italic;
}

.monogram-circle .ampersand {
    font-size: 14px;
    opacity: 0.9;
}

.monogram-circle.small {
    width: 48px;
    height: 48px;
    font-size: 14px;
}

.monogram-circle.small .ampersand {
    font-size: 11px;
}

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

.nav-item {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    padding: 4px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    transition: width 0.3s var(--ease-smooth);
}

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

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

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

.menu-trigger span {
    width: 24px;
    height: 2px;
    background: var(--color-green-dark);
    transition: all 0.3s var(--ease-smooth);
}

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

.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: 110px 40px 70px;
}

.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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 182, 200, 0.7) 40%, rgba(168, 213, 168, 0.75) 100%);
    z-index: -1;
}

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

.petal {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--color-soft-pink), var(--color-pink));
    border-radius: 50% 0 50% 0;
    opacity: 0;
    animation: floatPetal 14s infinite ease-in-out;
}

.petal:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.petal:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
}

.petal:nth-child(3) {
    left: 45%;
    animation-delay: 5s;
}

.petal:nth-child(4) {
    left: 65%;
    animation-delay: 8s;
}

.petal:nth-child(5) {
    left: 80%;
    animation-delay: 11s;
}

.petal:nth-child(6) {
    left: 90%;
    animation-delay: 3s;
}

@keyframes floatPetal {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-15vh) rotate(360deg) scale(1.1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-charcoal);
    max-width: 840px;
}

.save-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-green-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-green);
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-names {
    font-family: var(--font-serif);
    font-size: 88px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.divider-symbol {
    font-size: 44px;
    opacity: 0.85;
    margin: 6px 0;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    color: var(--color-text);
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 42px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.detail-item i {
    font-size: 17px;
    color: var(--color-green);
}

.dot-separator {
    opacity: 0.5;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

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

.count-value {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-green-dark);
    min-width: 75px;
    padding: 10px 14px;
    border: 2px solid var(--color-green);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
}

.count-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-text);
}

.godparents-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 28px;
    border-top: 1px solid var(--color-green-light);
    border-bottom: 1px solid var(--color-green-light);
}

.godparents-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text);
    opacity: 0.85;
}

.godparents-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-green-dark);
}

/* SECTION COMMON */
section {
    padding: 110px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.section-heading {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.15;
    margin-bottom: 16px;
}

.heading-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
    margin: 0 auto;
}

/* STORY SECTION */
.story-section {
    background: linear-gradient(180deg, var(--color-cream-white) 0%, #F9F7F5 100%);
}

.story-layout {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 72px;
    align-items: center;
}

.story-visual {
    position: relative;
}

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

.image-frame-spring img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 36px rgba(127, 178, 133, 0.2);
}

.frame-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-green);
}

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

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

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

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

.story-narrative {
    padding: 16px 0;
}

.story-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 22px;
}

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

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

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

.couple-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s var(--ease-smooth);
}

.couple-card:hover {
    transform: translateY(-10px);
}

.card-photo-wrapper {
    margin-bottom: 28px;
    position: relative;
}

.photo-shape {
    position: relative;
    width: 300px;
    height: 380px;
    overflow: hidden;
    border-radius: 180px 180px 8px 8px;
    box-shadow: 0 14px 44px rgba(127, 178, 133, 0.18);
    transition: all 0.4s var(--ease-smooth);
}

.bride-shape {
    border: 3px solid var(--color-soft-pink);
}

.groom-shape {
    border: 3px solid var(--color-green);
}

.couple-card:hover .photo-shape {
    box-shadow: 0 20px 56px rgba(127, 178, 133, 0.28);
}

.shape-ornament {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-pink);
    z-index: 2;
}

.shape-ornament.top {
    top: 20px;
}

.shape-ornament.bottom {
    bottom: 20px;
}

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

.couple-card:hover .card-photo {
    transform: scale(1.05);
}

.card-info {
    max-width: 300px;
}

.card-name {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.card-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-green);
    margin-bottom: 18px;
}

.card-bio {
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    color: var(--color-text);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

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

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

.event-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(127, 178, 133, 0.12);
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(127, 178, 133, 0.2);
}

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

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

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

.event-icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border: 2px solid var(--color-green);
    border-radius: 50%;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
}

.event-icon-badge i {
    font-size: 22px;
    color: var(--color-pink);
}

.event-details {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 18px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
}

.meta-row i {
    font-size: 17px;
    color: var(--color-green);
}

.event-location {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 22px;
}

.event-location i {
    font-size: 17px;
    color: var(--color-green);
    margin-top: 2px;
}

.location-details {
    flex: 1;
}

.location-venue {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 3px;
}

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

.event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-green-dark);
    text-decoration: none;
    padding: 11px 20px;
    border: 1px solid var(--color-green);
    border-radius: 6px;
    transition: all 0.3s var(--ease-smooth);
    margin-top: auto;
}

.event-button:hover {
    background: var(--color-green);
    color: white;
}

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

.rsvp-container {
    background: #F9F7F5;
    padding: 52px 44px;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(127, 178, 133, 0.15);
}

.rsvp-intro {
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 36px !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.field-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-green-dark);
}

.field-input, .field-textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    padding: 13px 15px;
    border: 1px solid #D8CFCC;
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.3s var(--ease-smooth);
}

.field-input:focus, .field-textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(127, 178, 133, 0.12);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

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

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

.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
    border: none;
    border-radius: 6px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 10px;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(127, 178, 133, 0.35);
}

.form-alert {
    margin-top: 22px;
    padding: 15px 18px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 14px;
    text-align: center;
    display: none;
}

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

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

/* FOOTER */
.footer-section {
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 56px 40px;
}

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

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

.footer-names {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    color: var(--color-white);
}

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

.footer-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.footer-note {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    opacity: 0.85;
}

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

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .couple-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container, .container-narrow {
        padding: 0 22px;
    }
    
    section {
        padding: 76px 22px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 18px 22px;
        box-shadow: 0 6px 22px rgba(127, 178, 133, 0.2);
        transform: translateY(-130%);
        transition: transform 0.4s var(--ease-smooth);
    }
    
    .navigation.active {
        transform: translateY(0);
    }
    
    .nav-item {
        padding: 11px 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-trigger {
        display: flex;
    }
    
    .hero-section {
        padding: 94px 22px 56px;
    }
    
    .hero-names {
        font-size: 52px;
    }
    
    .divider-symbol {
        font-size: 30px;
    }
    
    .hero-tagline {
        font-size: 15px;
    }
    
    .countdown-wrapper {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
    }
    
    .countdown-box {
        flex-shrink: 0;
    }
    
    .count-value {
        font-size: 38px;
        min-width: 65px;
        padding: 8px 11px;
    }
    
    .count-label {
        font-size: 10px;
    }
    
    .section-heading {
        font-size: 38px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rsvp-container {
        padding: 38px 26px;
    }
    
    .card-name {
        font-size: 26px;
    }
    
    .photo-shape {
        width: 260px;
        height: 340px;
    }
}


