@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&display=swap');

/* CSS Variables matching Zola example */
:root {
    --peach-bg: #41153a;
    --navy: #000000;
    --accent: #BFB9CB;
    --white: #D6D6D6;
    --text: #000000;
    --font-header: 'Crimson Pro', Georgia, serif;
    --font-body: 'Crimson Pro', Georgia, serif;
    --font-names: 'p22-zaner-pro-four', sans-serif;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--peach-bg);
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--peach-bg);
    border: 2px solid var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

/* Mobile Menu — slides in from right */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 340px;
    background: var(--accent);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 60px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.close-menu svg {
    width: 20px;
    height: 20px;
    stroke: var(--peach-bg);
}

.mobile-menu-title {
    font-family: var(--font-names);
    font-size: 52px;
    font-weight: 400;
    color: var(--peach-bg);
    line-height: 1.3;
    margin-bottom: 8px;
    text-align: left;
}

.mobile-menu-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--peach-bg);
    text-align: left;
    margin-bottom: 4px;
    opacity: 0.85;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid var(--peach-bg);
}

.mobile-nav-links a {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--peach-bg);
    text-decoration: none;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--peach-bg);
}

/* Desktop Navigation */
.main-nav {
    background-color: var(--peach-bg);
    padding: 40px 20px;
    position: sticky;
    top: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav-title {
    font-family: var(--font-names);
    font-size: 70px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    margin: 0 12px;
    padding: 8px 0;
    position: relative;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* Underline that grows from center on hover */
.nav-links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links li:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    background-color: var(--peach-bg);
    overflow: hidden;
}

.hero-images {
    display: grid;
    grid-template-columns: 7fr 3fr;
    grid-template-rows: 1fr;
    gap: 0;
    max-width: 100%;
    height: 80vh;
    overflow: hidden;
    align-items: stretch;
}

.hero-panel {
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.hero-images img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-panel-left img {
    object-position: center -400px;
}

.hero-panel-right img {
    object-position: center top;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .hero-images {
        grid-template-columns: 65% 35%;
        height: 70vh;
    }

    .hero-panel-left img {
        object-position: center -220px;
    }
}


@media (max-width: 900px) and (min-width: 769px) {
    .hero-panel-left img {
        object-position: center -145px;
    }
}

/* Couple Section */
.couple-section {
    background-color: var(--accent);
    padding: 80px 20px;
    text-align: center;
}

.couple-section .name,
.couple-section .and-symbol,
.couple-section .wedding-date,
.couple-section .wedding-location {
    color: var(--peach-bg);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.couple-names {
    margin-bottom: 40px;
    margin-top:20px;
}

.name {
    font-family: var(--font-names);
    font-size: 70px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0;
}

.and-symbol {
    font-family: var(--font-names);
    font-size: 42px;
    color: var(--navy);
    line-height: 0;
    margin: 20px 0;
}

.wedding-info {
    margin-top: 80px;
    text-align: center;
}

.wedding-date {
    font-family: var(--font-names);
    font-size: 40px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-align: center;
    display: block;
    width: 100%;
}

.wedding-location {
    font-family: var(--font-names);
    font-size: 40px;
    color: var(--navy);
    line-height: 1.6;
    text-align: center;
    display: block;
    width: 100%;
}

/* Schedule Section */
.schedule-section {
    background-color: var(--accent);
    padding: 80px 20px;
}

.schedule-day {
    margin-bottom: 80px;
}

.schedule-day:last-child {
    margin-bottom: 0;
}

.day-title {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: 40px;
    text-align: center;
}

.event-item {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--navy);
}

.event-icon svg {
    width: 100%;
    height: 100%;
}

.event-name {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 400;
}

.event-time {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-details {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    line-height: 1.6;
}

.event-venue {
    font-weight: 400;
    margin-bottom: 5px;
}

.event-address {
    margin-bottom: 15px;
    font-style: normal;
}

.event-attire {
    margin-bottom: 10px;
}

.event-description {
    margin-top: 15px;
}

/* Registry Section */
.registry-section {
    background-color: var(--accent);
    padding: 80px 20px;
}

.section-title {
    font-family: var(--font-header);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: 40px;
    text-align: center;
}

.registry-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registry-section .section-title {
    margin-bottom: 12px;
}

.registry-widget-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    min-height: 200px;
}

.registry-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 39, 73, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 39, 73, 0.18);
}

.registry-card-header {
    margin-bottom: 24px;
}

.registry-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.registry-card-title {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}

.registry-card-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 32px;
}

.registry-card-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background-color: var(--navy);
    color: var(--white);
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 39, 73, 0.3);
}

.registry-card-button:hover {
    background-color: #1a3a61;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 39, 73, 0.4);
}

.registry-card-button svg {
    width: 24px;
    height: 24px;
}

/* Footer Image */
.footer-image {
    width: 100%;
    overflow: hidden;
    /* height: 500px; */
}

.footer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 45%;
}

/* Footer */
.main-footer {
    background-color: var(--peach-bg);
    padding: 30px 20px;
    text-align: center;
}

.footer-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        padding: 20px 70px 20px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-images img {
        height: auto;
        object-position: center;
    }

    .hero-panel-left img {
        object-position: center;
    }

    .hero-panel-right {
        display: none;
    }

    .nav-title {
        font-size: 48px;
    }

    .name {
        font-size: 52px;
    }

    .and-symbol {
        font-size: 32px;
    }

    .wedding-date {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .registry-description {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Travel Section */
.travel-section {
    background-color: var(--accent);
    padding: 80px 20px;
    min-height: 100vh;
}

.travel-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.travel-intro {
    margin-bottom: 60px;
}

.travel-intro p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 16px;
}

/* Hotels List */
.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
}

.hotel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hotel-icon {
    width: 64px;
    height: 64px;
    color: var(--navy);
    stroke: var(--navy);
    margin-bottom: 24px;
}

.hotel-type {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.hotel-name {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: 0;
    line-height: 1.3;
}

.hotel-address {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    font-style: normal;
    margin-bottom: 16px;
}

.hotel-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 24px;
    white-space: pre-wrap;
    max-width: 600px;
}

.hotel-button {
    display: inline-block;
    background-color: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

.hotel-button:hover {
    opacity: 0.8;
}

/* Flights Section */
.flights-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.flights-title {
    font-family: var(--font-header);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 40px;
    letter-spacing: 0;
    line-height: 1.3;
}

.flight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.flight-icon {
    width: 64px;
    height: 64px;
    color: var(--navy);
    stroke: var(--navy);
    fill: transparent;
    margin-bottom: 24px;
}

.flight-type {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.flight-name {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: 0;
    line-height: 1.3;
}

.flight-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 24px;
    white-space: pre-wrap;
    max-width: 600px;
}

@media (max-width: 768px) {
    .travel-section {
        padding: 60px 20px;
    }

    .hotel-name,
    .flight-name {
        font-size: 24px;
    }

    .flights-title {
        font-size: 28px;
    }
}

/* =====================
   Things To Do / POI
   ===================== */
.poi-section {
    background-color: var(--accent);
    padding: 80px 20px;
    min-height: 100vh;
}

.poi-container {
    max-width: 800px;
    margin: 0 auto;
}

.poi-intro {
    margin-bottom: 40px;
    text-align: center;
}

.poi-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 60px;
}

.poi-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.poi-banner-caption {
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .poi-banner {
        height: 240px;
    }
}

.poi-intro p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
}

.poi-category {
    margin-bottom: 70px;
}

.poi-category-title {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid var(--navy);
    padding-bottom: 16px;
}

.poi-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.poi-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.poi-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    color: var(--navy);
    stroke: var(--navy);
}

.poi-icon svg {
    width: 100%;
    height: 100%;
}

.poi-info {
    flex: 1;
}

.poi-type {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.6;
    margin-bottom: 4px;
}

.poi-name {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.poi-address {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 10px;
}

.poi-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 16px;
}

.poi-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.poi-button:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .poi-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .poi-section {
        padding: 60px 20px;
    }

    .poi-name {
        font-size: 18px;
    }
}

/* =====================
   Gallery
   ===================== */
.gallery-section {
    background-color: var(--accent);
    padding: 80px 20px;
    min-height: 100vh;
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    background: var(--peach-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    min-height: 300px;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--tall img {
    min-height: 620px;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--wide img {
    min-height: 400px;
    object-position: center 40%;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img,
    .gallery-item--tall img {
        min-height: 260px;
    }

    .gallery-item--wide img {
        min-height: 260px;
    }
}

/* =====================
   FAQ
   ===================== */
.faq-section {
    background-color: var(--accent);
    padding: 80px 20px;
    min-height: 100vh;
}

.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--navy);
}

.faq-item {
    border-bottom: 1px solid var(--navy);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--navy);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 400px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--navy);
}

.coming-soon {
    margin-top: 24px;
    text-align: center;
    font-family: var(--font-names);
    font-size: 72px;
    line-height: 1.2;
    color: var(--navy);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question span {
        font-size: 15px;
    }
}
