/* Wedding Save the Date - Clean & Structured CSS */

/* ===== RESET & BASE STYLES ===== */
html, body, div, section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: #8B7355;
}

/* ===== HERO SECTION ===== */
:root {
    --sand-50: #f8efe4;
    --sand-100: #e6d6c4;
    --sand-300: #d9c0a2;
    --chocolate-700: #5e4230;
    --chocolate-900: #2e1d12;
    --hero-text: #8B7355;
    --hero-text-soft: rgba(139, 115, 85, 0.86);
    --hero-shadow: 0 16px 30px rgba(84, 63, 44, 0.16);
    --ivory: #fff9f1;
    --glass: rgba(255, 248, 238, 0.72);
    --glass-stroke: rgba(255, 241, 225, 0.72);
    --shadow-lg: 0 22px 64px rgba(32, 20, 13, 0.3);
}

.wedding-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 239, 220, 0.88) 0%, transparent 48%),
        radial-gradient(circle at 88% 84%, rgba(224, 203, 180, 0.52) 0%, transparent 42%),
        linear-gradient(160deg, #f7ecdf 0%, #ead9c5 100%);
}

.wedding-hero::before,
.wedding-hero::after {
    display: none;
}

.wedding-hero::before {
    width: min(48vw, 600px);
    height: min(48vw, 600px);
    top: -22%;
    left: -10%;
    background: rgba(255, 227, 195, 0.95);
}

.wedding-hero::after {
    width: min(52vw, 680px);
    height: min(52vw, 680px);
    right: -18%;
    bottom: -36%;
    background: rgba(190, 154, 121, 0.48);
}

.wedding-container {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: clamp(0.35rem, 1vw, 0.9rem);
}

.wedding-content {
    width: min(980px, 100%);
    min-height: calc(100vh - clamp(0.7rem, 2vw, 1.8rem));
    display: grid;
    align-content: stretch;
    animation: cardRise 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 160ms both;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(320px, 500px);
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    gap: clamp(1rem, 2.6vw, 2.4rem);
}

.hero-image-column {
    display: flex;
    justify-content: center;
}

.hero-copy-column {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.2vw, 1.8rem);
}

.section-greeting,
.section-main,
.section-button {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.section-greeting {
    min-height: 0;
}

.section-main {
    flex-direction: column;
    gap: clamp(0.9rem, 2vw, 1.35rem);
}

.hero-portrait-photo {
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
    max-height: min(90vh, 760px);
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--hero-shadow);
    animation: portraitIn 900ms cubic-bezier(0.2, 0.6, 0.2, 1) 120ms both;
}

.section-button {
    min-height: 0;
}

.hero-cta-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    align-items: center;
    gap: 0.7rem;
}

.greeting {
    display: flex;
    flex-direction: column;
    gap: 0.36rem;
    color: var(--hero-text);
}

.guest-names,
.greeting-text,
.wedding-date,
.wedding-location,
.more-info-text {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.3;
}

.guest-names {
    font-size: clamp(0.72rem, 1.5vw, 0.9rem);
    font-weight: 500;
    color: var(--hero-text);
}

.greeting-text {
    font-size: clamp(0.65rem, 1.4vw, 0.84rem);
    color: var(--hero-text-soft);
}

.names-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.bride-name,
.groom-name {
    font-family: 'WindSong', cursive;
    font-size: clamp(3.8rem, 12vw, 6.2rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--hero-text);
    line-height: 0.84;
    text-shadow: 0 3px 10px rgba(255, 249, 240, 0.45);
}

.name-separator {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    color: var(--hero-text-soft);
    line-height: 1;
    margin: 0;
    text-shadow: none;
}

.divider-line {
    width: min(220px, 52vw);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 115, 85, 0.42) 16%, rgba(139, 115, 85, 0.42) 84%, transparent 100%);
    margin: 0;
}

.details-block {
    display: flex;
    flex-direction: column;
    gap: 0.64rem;
}

.wedding-date,
.wedding-location {
    font-size: clamp(0.72rem, 1.55vw, 0.9rem);
    font-weight: 500;
    color: var(--hero-text);
    margin: 0;
}

.more-info-text {
    margin-top: 0.12rem;
    margin-bottom: 0;
    font-size: clamp(0.64rem, 1.35vw, 0.78rem);
    font-weight: 400;
    color: var(--hero-text-soft);
}

.save-the-date-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.62rem;
    border: 1px solid rgba(139, 115, 85, 0.5);
    background: linear-gradient(120deg, rgba(139, 115, 85, 0.96), rgba(122, 100, 74, 0.96));
    color: var(--ivory);
    cursor: pointer;
    border-radius: 999px;
    padding: 0.74rem 1.35rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
    box-shadow: 0 8px 18px rgba(84, 63, 44, 0.2);
    margin: 0;
    text-decoration: none;
    min-width: 180px;
}

.hero-cta-secondary {
    background: transparent;
    color: var(--hero-text);
    border-color: rgba(139, 115, 85, 0.45);
    box-shadow: 0 6px 14px rgba(84, 63, 44, 0.1);
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 247, 237, 0.9);
    color: #8B7355;
    border-color: rgba(139, 115, 85, 0.62);
    box-shadow: 0 10px 20px rgba(84, 63, 44, 0.14);
}

.btn-arrow {
    font-size: 0.96rem;
    transition: transform 220ms ease;
}

.save-the-date-btn:not(.hero-cta-secondary):hover,
.save-the-date-btn:not(.hero-cta-secondary):focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(84, 63, 44, 0.22);
    background: linear-gradient(120deg, rgba(151, 126, 96, 0.98), rgba(131, 108, 81, 0.98));
    opacity: 1;
}

.save-the-date-btn:hover .btn-arrow,
.save-the-date-btn:focus-visible .btn-arrow {
    transform: translateX(2px);
}

.save-the-date-btn:focus-visible {
    outline: 2px solid #ffdfbf;
    outline-offset: 3px;
}

@keyframes portraitIn {
    from {
        transform: translateY(14px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

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

@media (max-width: 900px) {
    .wedding-content {
        width: min(900px, 100%);
        min-height: calc(100vh - 1.2rem);
    }

    .hero-layout {
        grid-template-columns: minmax(260px, 360px) minmax(280px, 1fr);
        gap: clamp(0.9rem, 2vw, 1.6rem);
    }

    .hero-portrait-photo {
        width: min(100%, 360px);
        max-height: min(86vh, 660px);
    }
}

@media (max-width: 768px) {
    .site-language-switcher {
        left: 12px;
        bottom: 12px;
    }

    .custom-language-switcher__btn {
        width: 40px;
        height: 40px;
    }

    .custom-language-switcher__btn img {
        width: 24px;
        max-height: 16px;
    }
}

@media (max-width: 640px) {
    .wedding-container {
        padding: 1rem;
    }

    .wedding-content {
        width: 100%;
        min-height: auto;
        align-content: start;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-image-column {
        justify-content: center;
    }

    .hero-copy-column {
        gap: 0.9rem;
    }

    .section-greeting,
    .section-main,
    .section-button {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-cta-group {
        grid-template-columns: 1fr;
        width: min(300px, 100%);
    }

    .names-block {
        align-items: center;
    }

    .divider-line {
        width: min(220px, 70vw);
    }

    .save-the-date-btn {
        width: 100%;
        max-width: 290px;
        padding: 0.88rem 1.1rem;
        font-size: 0.7rem;
    }

    .hero-portrait-photo {
        width: min(280px, 78vw);
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-portrait-photo,
    .wedding-content,
    .save-the-date-btn,
    .btn-arrow,
    .site-language-switcher {
        animation: none;
        transition: none;
    }
}
/* ===== NEW SECTIONS STYLES ===== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    color: #8B7355;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* Timeline Section */
.timeline-section {
    background: #FAF8F3;
    padding: 80px 0;
}

.program-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.program-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.program-tab-button {
    flex: 1;
    max-width: 200px;
    padding: 15px 25px;
    background: white;
    border: 2px solid #E8DCC8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #8B7355;
}

.program-tab-button:hover {
    border-color: #8B7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.15);
}

.program-tab-button.active {
    background: #8B7355;
    color: white;
    border-color: #8B7355;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.2);
}

.tab-day {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.tab-optional {
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 400;
}

.program-tab-button.active .tab-optional {
    opacity: 0.7;
}

.program-tab-content {
    display: none;
}

.program-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.timeline-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.15);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

.timeline-time {
    font-weight: 600;
    color: #8B7355;
    font-size: 0.95rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.timeline-content h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    color: #8B7355;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #A89883;
    margin: 0;
}

/* Locations Section */
.locations-section {
    background: white;
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 420px));
    justify-content: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: #FAF8F3;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 24px rgba(139, 115, 85, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(139, 115, 85, 0.16);
}

.location-image {
    width: 100%;
    height: 250px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-text-card {
    background: transparent;
    border-radius: 0;
    padding: 32px 28px;
}

.location-placeholder {
    font-size: 5rem;
}

.location-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 14px;
    color: #8B7355;
}

.location-address {
    font-size: 1.1rem;
    color: #A89883;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-description {
    font-size: 1rem;
    color: #B8A691;
    line-height: 1.6;
}

/* Travel Section */
.travel-section {
    background: #FAF8F3;
    padding: 80px 0;
}

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

.travel-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.15);
}

.travel-recommended {
    border: 2px solid #8B7355;
}

.recommendation-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #8B7355;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.3);
}

.travel-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #8B7355;
}

.travel-card p {
    font-size: 1rem;
    color: #A89883;
    line-height: 1.6;
}

.travel-card p small {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8B7355;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: #FAF8F3;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #E8DCC8;
    border-radius: 8px;
    overflow: hidden;
    background: #FAF8F3;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F1EBD8;
}

.faq-item.active .faq-question {
    background: #F1EBD8;
}

.faq-question h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
    color: #8B7355;
}

.faq-toggle {
    font-size: 2rem;
    color: #8B7355;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 30px 25px;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #A89883;
    line-height: 1.6;
    margin: 0;
}

/* RSVP Section */
.rsvp-section {
    background: white;
    padding: 80px 0;
}

.rsvp-content {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(139, 115, 85, 0.1);
}

.rsvp-intro {
    font-size: 1.2rem;
    color: #8B7355;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* RSVP Gravity Forms Theme */
.rsvp-section .gform_wrapper,
.rsvp-section .gform-theme,
.rsvp-section .gform-theme--framework {
    color: #8B7355;
    font-family: 'Jost', sans-serif;
}

.rsvp-section .gform_wrapper .gform_heading,
.rsvp-section .gform_wrapper .gform_description {
    color: #8B7355;
}

.rsvp-section .gform_wrapper .gfield_label,
.rsvp-section .gform_wrapper .gform-field-label,
.rsvp-section .gform_wrapper legend {
    color: #8B7355;
    font-weight: 500;
}

.rsvp-section .gform_wrapper .gfield_required {
    color: #b56a4d;
}

.rsvp-section .gform_wrapper .gf_page_steps,
.rsvp-section .gform_wrapper .gf_step {
    color: #8B7355;
}

.rsvp-section .gform_wrapper .gf_progressbar {
    background: #efe7dc;
    border-radius: 999px;
    overflow: hidden;
}

.rsvp-section .gform_wrapper .gf_progressbar_percentage {
    background: linear-gradient(90deg, #8b7355 0%, #a78967 100%) !important;
    color: #fff9f1;
}

.rsvp-section .gform_wrapper input[type='text'],
.rsvp-section .gform_wrapper input[type='email'],
.rsvp-section .gform_wrapper input[type='tel'],
.rsvp-section .gform_wrapper input[type='number'],
.rsvp-section .gform_wrapper textarea,
.rsvp-section .gform_wrapper select {
    border: 1px solid #d8c8b3;
    background: #fffcf7;
    border-radius: 8px;
    color: #6f5b43;
    box-shadow: none;
}

.rsvp-section .gform_wrapper input:focus,
.rsvp-section .gform_wrapper textarea:focus,
.rsvp-section .gform_wrapper select:focus {
    outline: none;
    border-color: #8B7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.14);
}

.rsvp-section .gform_wrapper input[type='radio'],
.rsvp-section .gform_wrapper input[type='checkbox'] {
    accent-color: #8B7355;
}

/* Force custom radio appearance to avoid browser/plugin default blue */
.rsvp-section .gform_wrapper input[type='radio'] {
    appearance: none;
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border: 2px solid rgba(139, 115, 85, 0.7);
    border-radius: 50%;
    background: #fffdf9;
    display: inline-grid;
    place-content: center;
    margin: 0;
}

.rsvp-section .gform_wrapper input[type='radio']::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 120ms ease-in-out;
    background: #8B7355;
}

.rsvp-section .gform_wrapper input[type='radio']:checked::before {
    transform: scale(1);
}

.rsvp-section .gform_wrapper input[type='radio']:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
}

.rsvp-section .gform_wrapper .gchoice label {
    color: #6f5b43;
}

.rsvp-section .gform_wrapper .gform_page_footer {
    border-top-color: #eadfd1;
}

.rsvp-section .gform_wrapper .gform_button,
.rsvp-section .gform_wrapper .gform_next_button,
.rsvp-section .gform_wrapper .gform_previous_button,
.rsvp-section .gform_wrapper .gform_save_link {
    border: 1px solid rgba(139, 115, 85, 0.5);
    background: linear-gradient(120deg, rgba(139, 115, 85, 0.96), rgba(122, 100, 74, 0.96));
    color: #fff9f1;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    box-shadow: 0 8px 18px rgba(84, 63, 44, 0.16);
}

.rsvp-section .gform_wrapper .gform_button:hover,
.rsvp-section .gform_wrapper .gform_next_button:hover,
.rsvp-section .gform_wrapper .gform_previous_button:hover,
.rsvp-section .gform_wrapper .gform_save_link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(84, 63, 44, 0.2);
    filter: brightness(1.02);
}

.rsvp-section .gform_wrapper .gform_previous_button {
    background: #f5ede2;
    color: #8B7355;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .program-tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .program-tab-button {
        max-width: 100%;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .timeline-image {
        width: 100%;
        height: 200px;
        border-radius: 8px;
    }
    
    .timeline-content {
        padding: 20px 25px;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 60px 20px;
    }
    
    .rsvp-content {
        padding: 30px 20px;
    }
}

/* Location Images */
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-map-link {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 24px;
    background: #8B7355;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.location-text-card .location-map-link {
    margin-bottom: 0;
}

.location-map-link:hover {
    background: #6F5B43;
}

.location-description {
    font-size: 1rem;
    color: #B8A691;
    line-height: 1.6;
}

/* Day Section */
.day-section {
    margin-bottom: 60px;
}

.day-section:last-child {
    margin-bottom: 0;
}

.day-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #8B7355;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

/* International Guests & Host Sections */
.international-section,
.host-section {
    padding: 80px 0;
}

.international-section {
    background: white;
}

.host-section {
    background: #FAF8F3;
}

.international-content,
.host-content {
    max-width: 900px;
    margin: 0 auto;
}

.international-content .info-text,
.host-content .info-text {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #8B7355;
}

.international-content .info-text p,
.host-content .info-text p {
    margin-bottom: 1rem;
}

.form-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(139, 115, 85, 0.1);
}

.host-section .form-box {
    background: #FEFDFB;
}

.form-box h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #8B7355;
    text-align: center;
}

@media (max-width: 768px) {
    .international-section,
    .host-section {
        padding: 60px 0;
    }
    
    .form-box {
        padding: 30px 20px;
    }
    
    .international-content .info-text,
    .host-content .info-text {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
}

/* Tabs Section */
.tabs-section {
    padding: 80px 0;
    background: white;
}

.tabs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-button {
    flex: 1;
    max-width: 300px;
    padding: 20px 30px;
    background: white;
    border: 2px solid #E8DCC8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #8B7355;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tab-button:hover {
    border-color: #8B7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.15);
}

.tab-button.active {
    background: #8B7355;
    color: white;
    border-color: #8B7355;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.2);
}

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

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

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

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

.tab-inner {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(139, 115, 85, 0.1);
}

.tab-inner h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: #8B7355;
    text-align: center;
    margin-bottom: 30px;
}

.tab-inner .info-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #8B7355;
}

.tab-inner .info-text p {
    margin-bottom: 1rem;
}

.tab-inner .info-box {
    background: #F1EBD8;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
    margin-top: 2rem;
}

.tab-inner .info-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #8B7355;
}

.tab-inner .info-box strong {
    color: #8B7355;
    font-weight: 600;
}

/* Hotel recommendations */
.hotel-recommendations {
    margin-top: 3rem;
}

.hotel-recommendations h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #8B7355;
    margin-bottom: 2rem;
    text-align: center;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hotel-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E8DCC8;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(139, 115, 85, 0.15);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.hotel-header h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #8B7355;
    margin: 0;
    flex: 1;
}

.hotel-category {
    background: #F1EBD8;
    color: #8B7355;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.hotel-address {
    font-size: 0.95rem;
    color: #666;
    margin: 0.5rem 0;
}

.hotel-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 1rem 0;
    font-style: italic;
}

.hotel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: gap 0.2s ease;
}

.hotel-link:hover {
    gap: 0.8rem;
    text-decoration: underline;
}

.tab-inner .form-box {
    background: #FAF8F3;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E8DCC8;
}

.tab-inner .form-box h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #8B7355;
    text-align: center;
}

@media (max-width: 768px) {
    .tabs-section {
        padding: 60px 0;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-button {
        max-width: 100%;
        padding: 18px 25px;
        font-size: 1.2rem;
    }
    
    .tab-icon {
        font-size: 2rem;
    }
    
    .tab-inner {
        padding: 35px 25px;
    }
    
    .tab-inner h3 {
        font-size: 1.8rem;
    }
    
    .tab-inner .info-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .tab-inner .form-box {
        padding: 30px 20px;
    }

    .tab-content-wrapper,
    .tab-content,
    .tab-inner,
    .hotel-recommendations,
    .hotels-grid,
    .hotel-card {
        min-width: 0;
    }

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

    .hotel-card {
        padding: 1.25rem;
    }

    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-category {
        white-space: normal;
    }
}
/* Footer */
.site-footer {
    background: #8B7355;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-names {
    font-family: 'Corinthia', cursive;
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-name {
    font-weight: 700;
}

.footer-separator {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    font-weight: 300;
}

.footer-date {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-location {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-update {
    margin-bottom: 10px !important;
    font-size: 0.85rem !important;
    opacity: 0.7 !important;
    font-style: italic;
}

.footer-bank-account {
    margin-top: 10px;
}

.footer-bank-account-label {
    margin-bottom: 6px !important;
    font-size: 0.82rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7 !important;
}

.footer-bank-account p {
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 20px 25px;
    }
    
    .footer-names {
        font-size: 2.5rem;
        gap: 10px;
    }
    
    .footer-separator {
        font-size: 1.8rem;
    }
    
    .footer-date {
        font-size: 1.1rem;
    }
    
    .footer-location {
        font-size: 0.9rem;
    }
}