@font-face {
    font-family: 'Orange Avenue';
    src: url('OrangeAvenueDemoRegular-Jp10K.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #1a3d47;
    --secondary-color: #4a7c82;
    --accent-color: #a8c8ca;
    --beige-light: #f5f1ed;
    --sand-brown: #9a8068;
    --text-dark: #2a2a2a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --light-bg: #fafafa;
    --gold-accent: #d4af7a;
}

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

body {
    font-family: 'Cormorant Garamond', 'Lato', serif;
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed nav */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation Menu */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(40, 82, 96, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.nav-logo-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--primary-color);
    font-style: italic;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--secondary-color);
}

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

.nav-link.active {
    color: var(--secondary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 1rem 20px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('hero-beach.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(40, 82, 96, 0.25) 0%, 
        rgba(84, 140, 146, 0.35) 50%, 
        rgba(40, 82, 96, 0.45) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
    color: var(--white);
    max-width: 900px;
    padding: 0;
    margin-top: 15vh;
}

.hero-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-style: italic;
    line-height: 1.2;
}

.hero-date {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.hero-date::before,
.hero-date::after {
    content: '•';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.6;
    font-family: 'Cormorant Garamond', serif;
}

.hero-date::before {
    left: -2.5rem;
}

.hero-date::after {
    right: -2.5rem;
}

.hero-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    margin-top: 1rem;
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    letter-spacing: 4px;
    font-weight: 600;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 2rem auto 0;
    opacity: 0.5;
}

/* Welcome Section */
.welcome {
    background: var(--beige-light);
    padding: 100px 0 60px 0;
}

.welcome-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
    font-style: italic;
    line-height: 1.3;
}

.welcome-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 2rem auto 0;
    opacity: 0.5;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Details Section */
.details-section {
    background: var(--beige-light);
    padding: 60px 0 100px 0;
}

.details-main-title {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.details-highlighted {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.details-highlight-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(26, 61, 71, 0.06);
    border-top: 4px solid var(--secondary-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.details-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.details-highlight-card:hover::before {
    transform: scaleX(1);
}

.details-highlight-card .details-subtitle::after {
    display: none;
}

.details-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 130, 0.15);
}

.details-highlight-card .details-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.details-highlight-card .details-text {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.details-single-column {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}


.details-title-script {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.9;
}

.details-title-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--primary-color);
    line-height: 1;
    font-style: italic;
    text-transform: uppercase;
}

.details-subsection {
    margin-bottom: 2rem;
}

.details-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.details-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.6;
}

.details-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.details-link {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
    transition: color 0.3s ease;
}

.details-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.favorites-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.favorites-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.favorites-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.5;
}



.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.map-container iframe:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Weather Card Styles */
.weather-card {
    position: relative;
}

.weather-content {
    min-height: 150px;
}

.weather-loading {
    text-align: center;
    color: var(--text-light);
    padding: 1rem 0;
}

.weather-error {
    text-align: center;
    color: var(--text-light);
    padding: 1rem 0;
}

.weather-error-small {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.weather-current {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.weather-icon {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 8px rgba(255, 229, 179, 0.6));
}

.weather-icon-sm {
    width: 40px;
    height: 40px;
}

.weather-temp-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.weather-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: capitalize;
    margin-top: 0.25rem;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.weather-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.weather-detail-label {
    color: var(--text-light);
}

.weather-detail-value {
    color: var(--text-dark);
    font-weight: 600;
}

.weather-wedding-forecast {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--accent-color);
}

.weather-wedding-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-wedding-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--beige-light);
    padding: 1rem;
    border-radius: 10px;
}

.weather-wedding-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.weather-wedding-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.weather-wedding-temp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.weather-wedding-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: capitalize;
    margin-top: 0.25rem;
}

/* Dress Code Section */
.dress-code {
    background: var(--white);
    padding: 100px 0;
}

.dress-code-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dress-code-grid .details-subsection {
    background: var(--beige-light);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 61, 71, 0.1);
}

.dress-code-grid .details-subsection h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dress-code-cta {
    margin-top: 2rem;
    text-align: center;
}

.inspirations-hero {
    background: linear-gradient(135deg, rgba(28, 64, 82, 0.9), rgba(57, 123, 187, 0.9)), url('hero-beach.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.inspirations-hero .container {
    max-width: 900px;
}

.inspirations-hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.inspirations-palette {
    background: var(--white);
    padding: 80px 0 120px;
}

.inspirations-gallery {
    background: var(--white);
    padding: 80px 0 120px;
}

.inspiration-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.inspiration-card {
    background: var(--beige-light);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(26, 61, 71, 0.08);
    box-shadow: 0 20px 45px rgba(45, 82, 96, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inspiration-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    filter: saturate(1.1);
}

.inspiration-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}


.color-palette {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 120px;
}

.color-item:hover {
    transform: translateY(-5px);
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.color-item:hover .color-swatch {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.color-name {
    font-family: 'Orange Avenue', 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* RSVP Section */
.rsvp {
    background: var(--white);
}

.rsvp-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.rsvp-note {
    text-align: center;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.rsvp-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--beige-light);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(26, 61, 71, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(40, 82, 96, 0.15);
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(84, 140, 146, 0.1);
    transform: translateY(-1px);
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 82, 96, 0.25);
    margin-top: 1rem;
}

.btn-submit.btn-inline {
    width: auto;
    padding: 0.9rem 2.5rem;
    text-transform: uppercase;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 0;
    text-decoration: none;
    display: inline-block;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 82, 96, 0.35);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(40, 82, 96, 0.3);
}

.rsvp-message {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

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

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

/* Accommodation Section */
.accommodation {
    background: var(--beige-light);
}

.accommodation-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.accommodation-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(26, 61, 71, 0.06);
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 130, 0.15);
}

.accommodation-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.accommodation-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.accommodation-location {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.accommodation-distance {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.accommodation-description {
    color: var(--text-dark);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.accommodation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(40, 82, 96, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.accommodation-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
    transform: translateX(3px);
}

.accommodation-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.accommodation-link:hover::after {
    transform: translateX(3px);
}

/* Gifts Section */
.gifts {
    background: var(--beige-light);
    padding: 100px 0;
}

.gifts-intro {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.gifts-gallery {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gifts-toggle-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.gifts-toggle-wrapper button {
    width: fit-content;
}

.gifts-list {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item-category {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(26, 61, 71, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(26, 61, 71, 0.12);
}

.gallery-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.gallery-item-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: center;
    flex-grow: 1;
}

.gallery-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 61, 71, 0.08);
}

.gallery-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.gallery-item-btn {
    padding: 0.6rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.checkout-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-modal-content {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.checkout-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkout-close:hover {
    color: var(--primary-color);
}

.payment-stage {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-stage-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.payment-gift-name {
    font-family: 'Orange Avenue', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.payment-gift-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.payment-gift-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.payment-explanation {
    background: var(--beige-light);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border: 1px solid rgba(26, 61, 71, 0.08);
}

.payment-explanation p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.qr-section {
    text-align: center;
    margin: 1.5rem 0;
}

.pix-qr {
    width: 200px;
    height: 200px;
    max-width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(26, 61, 71, 0.1);
}

.checkout-form .btn-submit {
    display: block;
    margin: 1.5rem auto 0;
    width: fit-content;
}

.checkout-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    opacity: 0.95;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

/* Inline Icons */
.icon-inline {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    filter: drop-shadow(0 0 4px rgba(148, 184, 164, 0.4));
}

.icon-heart {
    width: 16px;
    height: 16px;
    margin: 0 2px;
    filter: drop-shadow(0 0 6px rgba(255, 179, 209, 0.6));
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Success Page Icon */
.success-check-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(148, 184, 164, 0.6));
}

/* Responsive Design */
@media (max-width: 968px) {
    body {
        padding-top: 70px;
    }

    .details-highlighted {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .details-highlight-card {
        padding: 2rem;
    }

    .details-title-script {
        font-size: 2.5rem;
    }

    .details-title-main {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-names {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-date {
        font-size: 1.6rem;
    }

    .hero-location {
        font-size: 1rem;
    }

    .welcome-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .details-title-script {
        font-size: 2rem;
    }

    .details-title-main {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .details-text {
        font-size: 1rem;
    }

    .weather-main {
        flex-direction: column;
        gap: 0.75rem;
    }

    .weather-icon {
        width: 40px;
        height: 40px;
    }

    .weather-temp {
        font-size: 1.5rem;
    }

    .weather-wedding-details {
        flex-direction: column;
        gap: 0.75rem;
    }

    .weather-icon-sm {
        width: 32px;
        height: 32px;
    }

    .welcome {
        padding: 60px 0 30px 0;
    }

    .details-section {
        padding: 30px 0 60px 0;
    }


    .color-palette {
        gap: 0.75rem;
        justify-content: center;
    }

    .color-swatch {
        width: 70px;
        height: 70px;
    }

    .color-name {
        font-size: 0.85rem;
    }

    .color-swatch {
        width: 100px;
        height: 100px;
    }

    .rsvp-form {
        padding: 1.5rem;
    }

    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accommodation-image {
        height: 200px;
    }

    section {
        padding: 50px 0;
    }

    .welcome {
        padding: 50px 0 25px 0;
    }

    .details-section {
        padding: 25px 0 50px 0;
    }

    .gallery-item {
        padding: 1.25rem;
    }

    .gallery-item-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .gallery-item-btn {
        width: 100%;
        text-align: center;
    }

    .checkout-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .checkout-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1.5rem;
        margin-top: 12vh;
    }

    .hero-names {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-date {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }


    .hero-date {
        font-size: 1.4rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .color-palette {
        gap: 0.5rem;
    }

    .color-swatch {
        width: 60px;
        height: 60px;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .color-name {
        font-size: 0.75rem;
    }

    .color-item {
        max-width: 70px;
    }

    .color-swatch {
        width: 80px;
        height: 80px;
    }

    .color-name {
        font-size: 0.95rem;
    }
}

