/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Amiri', serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #80927c;
    overflow-x: hidden;
}

/* Background */
.background {
    background-color: #80927c;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: -1;
    top: 56px;
    bottom: -120px;
}

@media (min-width: 768px) {
    .background {
        top: 0;
    }
}

/* Main Container */
.main-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

/* Horizontal Layout */
.horizontal-layout {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.horizontal-layout.home-page {
    flex-direction: row;
}

@media (min-width: 768px) {
    .horizontal-layout.home-page {
        padding: 0 0;
    }
}

/* Top Frame */
.top-frame {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    height: 0px;
}

/* Mobile Header Spacer */
.mobile-header-spacer {
    height: 56px;
    width: 100%;
}

@media (min-width: 768px) {
    .mobile-header-spacer {
        display: none;
    }
}

/* Mobile Header */
.mobile-header {
    padding: 0 4% 10px 4%;
    text-align: center;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
}

/* Desktop Header */
.desktop-header {
    padding: 0 4% 10px 4%;
    text-align: center;
    width: 100%;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .desktop-header {
        display: block;
    }
}

/* Initials Container */
.initials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 200px;
    height: 200px;
}

.initials-container img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .initials-container {
        width: 175px;
        height: 175px;
    }

    .initials-container img {
        width: 175px;
        height: 175px;
    }
}

/* Couple Names */
.couple-names {
    line-height: 1;
    margin: 16px auto;
    font-family: Amiri;
    color: #ffffff;
    font-size: 52px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 6px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (max-width: 640px) {
    .couple-names {
        font-size: calc(52px * 0.75);
    }
}

@media (max-width: 501px) {
    .couple-names {
        padding-bottom: 0px;
        padding-top: 10px;
    }
}

/* Wedding Info */
.wedding-info {
    line-height: 1;
    margin: 8px 0;
    font-family: Amiri;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .wedding-info {
        font-size: calc(20px * 0.75);
    }
}

@media (max-width: 640px) {
    .wedding-info {
        font-size: calc(20px * 0.85);
    }
}

/* Countdown */
.countdown {
    line-height: 1;
    margin: 8px 0;
    font-family: Amiri;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .countdown {
        font-size: calc(20px * 0.75);
    }
}

@media (max-width: 640px) {
    .countdown {
        font-size: calc(20px * 0.85);
    }
}

/* Desktop Navigation */
.desktop-nav-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav-wrapper {
        display: inherit;
        width: 100%;
    }
}

.desktop-nav {
    display: none;
    width: 100%;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
        z-index: 1;
    }
}

.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 8px 16px;
}

.nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    display: inline-block;
    list-style: none;
    padding: 0 8px;
}

.nav-link {
    margin: 0;
    padding: 8px 0;
    text-decoration: none;
}

.nav-text {
    font-family: Amiri;
    letter-spacing: 2px;
    color: #ffffff;
    font-size: 17px;
    font-weight: normal;
    border-bottom: 2px solid transparent;
    display: block;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0 auto;
    padding: 8px 8px 6px;
    text-decoration: none;
    transition: all 0.25s;
    width: fit-content;
}

.nav-text.active {
    border-bottom: 2px solid #ffffff;
}

.nav-text:hover {
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 70%);
}

@media (max-width: 640px) {
    .nav-text {
        font-size: calc(17px * 0.875);
    }
}

@media (max-width: 640px) {
    .nav-text {
        font-size: calc(17px * 0.9);
    }
}

/* Mobile Navigation */
.mobile-nav-wrapper {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav-wrapper {
        display: none;
    }
}

.mobile-nav-button-container {
    display: block;
    height: 40px;
    left: 8px;
    margin: 0;
    overflow: hidden;
    position: fixed;
    top: 8px;
    width: 40px;
    z-index: 19;
}

.mobile-nav-button {
    background: none;
    border: none;
    font-size: 10px;
    height: 40px;
    width: 40px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}

.hamburger-line {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger-line:nth-child(1) {
    top: 4px;
}

.hamburger-line:nth-child(2) {
    top: 12px;
}

.hamburger-line:nth-child(3) {
    top: 12px;
}

.hamburger-line:nth-child(4) {
    top: 20px;
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.mobile-nav-header {
    height: 56px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 18;
    background-color: #80927c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-page-title {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: Amiri;
    color: #ffffff;
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 640px) {
    .mobile-page-title {
        font-size: calc(30px * 0.75);
    }
}

.mobile-nav {
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0.5s;
    width: 100%;
    z-index: 18;
    background-color: #80927c;
    height: 0;
}

.mobile-nav-content {
    padding-top: 56px;
    height: 100vh;
    overflow-y: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    text-align: center;
    width: 100%;
    padding: 8px;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
    background-color: rgba(255, 255, 255, 10%);
}

/* Content Area */
.content-area {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
}

.verticalLayout.home-page .content-area {
    width: 100%;
}

@media (min-width: 768px) {
    .verticalLayout.home-page .content-area {
        width: 50%;
        max-width: 720px;
        padding-right: 3rem;
        padding-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .verticalLayout.home-page .content-area {
        padding-left: 5rem;
    }
}

@media (min-width: 1200px) {
    .verticalLayout.home-page .content-area {
        padding-left: 7rem;
    }
}

/* Products Grid App Root */
.products-grid-app-root {
    /* This would contain the main content */
}

/* Date and Location Section */
.date-location-section {
    letter-spacing: 2.23px;
    line-height: 1.3;
    display: none;
    flex-direction: column;
    justify-content: center;
    margin: 12px auto;
    padding: 0 16px;
    width: fit-content;
    font-family: Amiri;
    color: #ffffff;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .date-location-section {
        display: flex;
        justify-content: center;
        padding: 0 16px;
        flex-direction: row;
        margin: 52px auto 20px;
    }

    .verticalLayout.home-page .date-location-section {
        display: flex;
        justify-content: flex-start;
        padding: 0;
        flex-direction: column;
        margin: 0 auto 20px 0;
    }
}

@media (max-width: 640px) {
    .date-location-section {
        font-size: calc(30px * 0.75);
    }
}

@media (max-width: 640px) {
    .date-location-section {
        font-size: 1rem;
    }
}

.date-section {
    padding: 0 36px 20px;
    border-bottom: 1px solid #ffffff;
}

@media (min-width: 640px) {
    .date-section {
        border-bottom: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 20px 72px 20px 0;
        width: 315px;
        border-right: 1px solid #ffffff;
    }

    .verticalLayout.home-page .date-section {
        justify-content: flex-start;
        padding: 0;
        width: auto;
        border-right: none;
    }
}

.date-text {
    text-align: center;
}

.verticalLayout.home-page .date-text {
    text-align: left;
}

@media (min-width: 768px) and (max-width: 900px) {
    .verticalLayout.home-page .date-text {
        font-size: 0.75em;
    }
}

.location-section {
    padding: 20px 36px 0;
}

@media (min-width: 768px) {
    .location-section {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 0 20px 72px;
        width: 315px;
    }
}

.verticalLayout.home-page .location-section {
    padding: 0;
    width: auto;
}

.verticalLayout.home-page .location-section br {
    content: ', ';
}

.verticalLayout.home-page .location-section br:after {
    content: ', ';
}

.location-text {
    text-align: center;
}

.verticalLayout.home-page .location-text {
    text-align: left;
}

@media (min-width: 768px) and (max-width: 900px) {
    .verticalLayout.home-page .location-text {
        font-size: 0.75em;
    }
}

/* Event Section */
.event-row {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 720px;
    width: 100%;
    padding: 0;
}

.verticalLayout.home-page .event-row {
    margin-right: 2rem;
}

.event-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 48px 0 24px;
    align-items: center;
}

.verticalLayout.home-page .event-container {
    align-items: flex-start;
    margin: 0 0 24px;
    text-align: left;
}

.event-content {
    margin: 8px 0;
}

.event-title {
    line-height: 1;
    margin: 32px 0 8px 0;
    font-family: Amiri;
    color: #ffffff;
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.verticalLayout.home-page .event-title {
    margin: 0 0 8px 0;
}

@media (max-width: 640px) {
    .event-title {
        font-size: calc(30px * 0.75);
    }
}

.event-date {
    margin: 8px 0;
    font-family: Amiri;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .event-date {
        font-size: calc(20px * 0.75);
    }
}

@media (max-width: 640px) {
    .event-date {
        font-size: calc(20px * 0.85);
    }
}

.event-time {
    margin: 8px 0;
    font-family: Amiri;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .event-time {
        font-size: calc(20px * 0.75);
    }
}

@media (max-width: 640px) {
    .event-time {
        font-size: calc(20px * 0.85);
    }
}

/* Mobile Navigation Footer */
.mobile-nav-footer {
    padding: 48px 0 40px;
}

@media (min-width: 768px) {
    .mobile-nav-footer {
        display: none;
    }
}

.mobile-nav-footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 45%);
}

.mobile-nav-footer-item {
    text-align: center;
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 45%);
}

.mobile-nav-footer-item:hover,
.mobile-nav-footer-item:focus {
    background-color: rgba(255, 255, 255, 10%);
}

.timeline-section {
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .timeline-section {
        max-width: 700px; /* Desktop */
    }
}

/* Timeline Items - Centered container, with time left and event right */
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%; /* Adjust width as desired for centering */
    margin: 0 auto; /* Centers the overall item */
    font-size: 1.1rem;
}

.timeline-time {
    text-align: left;
    min-width: 80px; /* Optional: keep a consistent width for time column */
}

.timeline-event {
    text-align: right;
    flex: 1;
    margin-left: 16px; /* spacing between time and event */
}

/* Footer */
.footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    position: relative;
    width: 100%;
}

.footer-content {
    padding-top: 50px;
}

.footer-initials {
    letter-spacing: 3.4px;
    line-height: 1;
    margin: 52px auto;
    text-align: center;
    width: fit-content;
}

.footer-initials-text {
    padding: 0 18px 16px;
    font-family: Amiri;
    color: #ffffff;
    font-size: 52px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 6px;
}

@media (max-width: 640px) {
    .footer-initials-text {
        font-size: calc(52px * 0.75);
    }
}

.footer-date {
    padding: 20px 18px 0;
    font-family: Amiri;
    letter-spacing: 3px;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    border-top: 1px solid #ffffff;
}

@media (max-width: 640px) {
    .footer-date {
        font-size: calc(20px * 0.75);
    }
}

@media (max-width: 640px) {
    .footer-date {
        font-size: calc(20px * 0.85);
    }
}

.footer-background {
    width: 100%;
    z-index: -1;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .horizontal-layout {
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.mobile-nav-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Our Story Section */
.our-story-section {
    max-width: 900px;
    margin: 64px auto 0;
    padding: 0 20px 48px;
}

.our-story-title {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Our Story – Soft & Romantic Cards */

.story-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Individual story card */
.story-card {
    position: relative;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 40px 48px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}


/* Date styling */
.story-date {
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #E5ECE8;
    margin-bottom: 10px;
}

/* Title styling */
.story-title {
    font-family: 'Amiri', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 14px;
    color: #ffffff;
}

/* Body text */
.story-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

/* Highlighted final card */
.story-card.highlight {
    background: linear-gradient(
        145deg,
        rgba(187, 204, 192, 0.35),
        rgba(255, 255, 255, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Custom cursor styles for story cards */
.story-card.cursor-bear:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">🐻</text></svg>'), auto;
}

.story-card.cursor-cake:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">🧁</text></svg>'), auto;
}

.story-card.cursor-deer:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">🦌</text></svg>'), auto;
}

.story-card.cursor-fish:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">🐟</text></svg>'), auto;
}

.story-card.cursor-ring:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">💍</text></svg>'), auto;
}

.story-card.cursor-wedding:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">💒</text></svg>'), auto;
}

/* Emoji particle styling */
.emoji-particle {
    position: fixed;
    pointer-events: none;
    font-size: 24px;
    z-index: 10000;
    user-select: none;
    will-change: transform, opacity;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .our-story-section {
        margin-top: 40px;
        padding: 0 16px 40px;
    }

    .story-list {
        gap: 32px;
    }

    .story-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .story-card::after {
        bottom: 18px;
        right: 18px;
        font-size: 1.2rem;
    }

    .story-title {
        font-size: 1.45rem;
    }

    .story-card p {
        font-size: 0.95rem;
    }
}

/* Photos Section - Gallery Wall Layout */
.photos-section {
    margin: 48px auto 0 auto;
    max-width: 1200px;
    padding: 0 0 32px 0;
}

.photos-title {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.photos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    grid-auto-flow: dense;
}

.gallery-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(73,91,85,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #E3E9E5;
    display: block;
}

.gallery-photo:hover, .gallery-photo:focus {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 8px 24px rgba(73,91,85,0.18), 0 2px 12px rgba(73,91,85,0.10);
    z-index: 2;
}

@media (max-width: 900px) {
    .photos-section {
        max-width: 100vw;
        padding: 0 0 24px 0;
    }
    .photos-gallery {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .photos-title {
        font-size: 26px;
    }
    .photos-gallery {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .gallery-photo {
        border-radius: 8px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    flex-direction: column;
    transition: opacity 0.2s;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
}
.lightbox-close {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    position: absolute;
    top: 32px;
    right: 48px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
}
.lightbox-close:hover, .lightbox-close:focus {
    color: #BBCCC0;
}
@media (max-width: 700px) {
    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 36px;
    }
    .lightbox-img {
        max-width: 98vw;
        max-height: 60vh;
        border-radius: 8px;
    }
}

/* Q + A Accordion Styles */
.qa-section {
    margin: 48px auto 0 auto;
    max-width: 700px;
    padding: 0 16px 32px 16px;
}
.qa-title {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #495B55;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.qa-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.qa-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(73,91,85,0.08);
    border: 2px solid #BBCCC0;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.qa-item.open {
    box-shadow: 0 8px 24px rgba(73,91,85,0.14), 0 2px 12px rgba(73,91,85,0.10);
    border-color: #495B55;
}
.qa-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Amiri', serif;
    font-size: 20px;
    color: #495B55;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.qa-question:after {
    content: '\25BC';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 18px;
    color: #BBCCC0;
    transition: transform 0.2s, color 0.2s;
}
.qa-item.open .qa-question:after {
    transform: translateY(-50%) rotate(180deg);
    color: #495B55;
}
.qa-answer {
    max-height: 0;
    overflow: hidden;
    background: #F6F8F7;
    color: #495B55;
    font-family: 'Amiri', serif;
    font-size: 17px;
    padding: 0 24px;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.2s;
}
.qa-item.open .qa-answer {
    padding: 16px 24px 24px 24px;
    max-height: 400px;
}
@media (max-width: 600px) {
    .qa-title {
        font-size: 26px;
    }
    .qa-question {
        font-size: 17px;
        padding: 16px 14px;
    }
    .qa-answer {
        font-size: 15px;
        padding: 0 14px;
    }
    .qa-item.open .qa-answer {
        padding: 12px 14px 18px 14px;
    }
}

/* Section Titles in White */
.qa-title, .photos-title, .our-story-title {
    color: #fff !important;
}

/* Timeline cards: wider, less tall, and more space for date */
.vtimeline-content {
    width: 480px;
    max-width: 520px;
    min-width: 260px;
    padding: 16px 40px 12px 40px;
    margin-bottom: 32px;
}
.vtimeline-item {
    min-height: 120px;
    margin-bottom: 80px;
}
@media (max-width: 900px) {
    .vtimeline-content {
        width: 90vw;
        max-width: 98vw;
        min-width: 0;
        padding: 12px 10px 8px 10px;
    }
    .vtimeline-item {
        margin-bottom: 56px;
    }
}
@media (max-width: 700px) {
    .vtimeline-content {
        width: 100%;
        max-width: 100%;
        padding: 10px 8px 6px 8px;
        margin-bottom: 16px;
    }
    .vtimeline-item {
        margin-bottom: 32px;
    }
}

/* Things to Do Section Styles */
.things-section {
    margin: 48px auto 0 auto;
    max-width: 900px;
    padding: 0 16px 32px 16px;
}
.things-title {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.things-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}
/* Things to Do Section: No Card Bubbles */
.things-category {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 0;
    min-width: 0;
    flex: 1 1 260px;
    margin-bottom: 32px;
    margin-top: 0;
}
.things-category h3 {
    font-family: 'Amiri', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 24px;
}
.things-category ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0 0 0 12px;
}
.things-category li {
    font-family: 'Amiri', serif;
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .things-list {
        flex-direction: column;
        gap: 0;
    }
    .things-category {
        margin-bottom: 24px;
    }
}
@media (max-width: 600px) {
    .things-title {
        font-size: 26px;
    }
    .things-category h3 {
        font-size: 18px;
        margin-top: 18px;
    }
    .things-category li {
        font-size: 15px;
    }
}

/* Things to Do Links */
.things-category a {
    color: #BBCCC0;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
.things-category a:hover, .things-category a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Things to Do Tabs */
.things-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab {
    font-family: 'Amiri', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.tab.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Things to Do Grid */
.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.thing-card {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.thing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.thing-card.hidden {
    display: none;
}

.thing-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.thing-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.thing-card h3 {
    font-family: 'Amiri', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.thing-card p {
    font-family: 'Amiri', serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 16px;
}

.thing-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Amiri', serif;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    margin-top: auto;
}

.thing-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
    .things-tabs {
        gap: 8px;
        margin-bottom: 24px;
    }

    .tab {
        font-size: 14px;
        padding: 8px 16px;
    }

    .things-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .thing-card {
        padding: 20px;
    }

    .thing-icon {
        font-size: 40px;
    }

    .thing-card h3 {
        font-size: 18px;
    }

    .thing-card p {
        font-size: 14px;
    }
}

/* Interactive Map Section */
.interactive-map-section {
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.map-title {
    font-family: 'Amiri', serif;
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
    font-weight: 600;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
}

.map-description {
    font-family: 'Amiri', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .interactive-map-section {
        margin-top: 32px;
        padding: 20px;
    }

    .map-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .map-container {
        padding: 8px;
    }

    .map-description {
        font-size: 14px;
    }
}

/* Windham Manor Logo Row Styles - Transparent Logo Fix */
.windham-manor-logo {
    height: 54px;
    width: auto;
    display: block;
    border-radius: 8px;
    /* background: #fff; */
    /* box-shadow: 0 2px 8px rgba(73,91,85,0.10); */
    /* padding: 4px 8px; */
}
@media (max-width: 600px) {
    .windham-manor-logo {
        height: 36px;
        /* padding: 2px 4px; */
    }
}

/* Windham Manor Logo Row Styles - Larger, with Address and Better Spacing */
.windham-manor-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 12px 0 48px 0;
}
.windham-manor-logo {
    height: 80px;
    width: auto;
    display: block;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(73,91,85,0.10); */
}
.windham-manor-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.windham-manor-text {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(73,91,85,0.10);
    margin-bottom: 4px;
}
.windham-manor-address {
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: #fff;
    opacity: 0.85;
    letter-spacing: 1px;
    line-height: 1.3;
}
@media (max-width: 600px) {
    .windham-manor-row {
        gap: 10px;
        margin: 8px 0 28px 0;
    }
    .windham-manor-logo {
        height: 48px;
    }
    .windham-manor-text {
        font-size: 20px;
    }
    .windham-manor-address {
        font-size: 13px;
    }
}

/* Travel Section Styles - Centered, Larger Font, Button Text */
/* Travel Section Styles */
.travel-section {
    width: 100%;
    max-width: 1200px; /* allow wide desktop layouts */
    margin: 48px auto 0 auto;
    padding: 0 16px 32px 16px;
    display: block; /* ensures grid children can expand */
}
.travel-title {
    font-family: 'Amiri', serif;
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.travel-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

@media (min-width: 769px) {
    .travel-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Travel page-specific wrapper for layout adjustments if needed */
.travel-page {
    width: 100%;
    max-width: 1200px;
    display: block;
}
.travel-hotel {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.travel-hotel:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}
.travel-hotel-name {
    font-family: 'Amiri', serif;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: center;
}
.travel-hotel-address {
    font-family: 'Amiri', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-align: center;
}
.travel-hotel-link {
    display: inline-block;
    font-family: 'Amiri', serif;
    font-size: 18px;
    color: #2d5a27;
    background: #BBCCC0;
    border-radius: 24px;
    padding: 10px 32px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2px;
    margin-bottom: 2px;
    box-shadow: 0 2px 8px rgba(73,91,85,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    letter-spacing: 1px;
}
.travel-hotel-link:hover, .travel-hotel-link:focus {
    background: #495B55;
    color: #fff;
    box-shadow: 0 4px 16px rgba(73,91,85,0.16);
    text-decoration: none;
}

/* Room block hotel highlighting */
.travel-hotel.room-block {
    background: linear-gradient(145deg, rgba(187, 204, 192, 0.25), rgba(255, 255, 255, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 769px) {
    .travel-hotel.room-block {
        grid-column: span 2;
    }
}

.travel-hotel.room-block::before {
    content: 'ROOM BLOCK AVAILABLE';
    display: block;
    font-family: 'Amiri', serif;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(73, 91, 85, 0.6);
    border-radius: 12px;
    font-weight: 600;
}

.travel-hotel-description {
    font-family: 'Amiri', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.5;
}

.travel-hotel-booking {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.4;
    padding: 8px 12px;
    background: rgba(73, 91, 85, 0.2);
    border-radius: 8px;
}

.travel-hotel-booking a {
    color: #BBCCC0;
    text-decoration: underline;
    font-weight: 600;
}

.travel-hotel-booking a:hover {
    color: #fff;
}

.travel-hotel.airbnb {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.airbnb-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.airbnb-logo {
    width: 35px;
    height: auto;
}

.travel-hotel.airbnb .travel-hotel-link:hover,
.travel-hotel.airbnb .travel-hotel-link:focus {
    background: rgba(237, 130, 125, 0.8);
    color: #fff;
}

@media (max-width: 600px) {
    .travel-title {
        font-size: 26px;
    }

    .travel-hotel-name {
        font-size: 20px;
    }

    .travel-hotel-address, .travel-hotel-link {
        font-size: 15px;
    }

    .travel-hotel-link {
        padding: 7px 14px;
    }

    .travel-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Timeline Items - Mobile Adjustments */
@media (max-width: 600px) {
    .timeline-item {
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
        font-size: 1rem;
    }

    .timeline-time,
    .timeline-event {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .timeline-time {
        min-width: 70px;
        text-align: left;
        margin-right: 8px;
    }

    .timeline-event {
        text-align: right;
        flex: 1;
        margin-left: 8px;
    }
}

/* ===============================
   Our Story – Animation & Dividers
   =============================== */

/* Base card state */
.story-card {
    position: relative;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

/* Visible state triggered by JS */
.story-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gentle divider between story moments */
.story-card:not(:last-child)::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    margin: 48px auto 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
}

/* Slight emphasis on final card divider spacing */
.story-card.highlight::after {
    margin-top: 64px;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    .story-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile tuning */
@media (max-width: 768px) {
    .story-card {
        transform: translateY(24px);
    }

    .story-card:not(:last-child)::after {
        width: 90px;
        margin-top: 32px;
    }
}

/* ===============================
   Things To Do - Card Layout Upgrade
   =============================== */

/* Tabs */
.things-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab {
    font-family: 'Amiri', serif;
    background: none;
    border: none;
    color: #BBCCC0;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

.tab.active,
.tab:hover {
    color: #ffffff;
    border-bottom: 2px solid #BBCCC0;
}

/* Grid */
.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* Card */
.thing-card {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 24px 20px 26px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.thing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

/* Image */
.thing-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}

/* Icon fallback */
.thing-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

/* Title */
.thing-card h3 {
    font-family: 'Amiri', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Description */
.thing-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    line-height: 1.5;
}

/* Button */
.thing-btn {
    display: inline-block;
    font-family: 'Amiri', serif;
    font-size: 14px;
    color: #2d5a27;
    background: #BBCCC0;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.thing-btn:hover {
    background: #495B55;
    color: #fff;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .things-title {
        font-size: 26px;
    }

    .thing-card {
        padding: 20px 16px;
    }

    .thing-card img {
        height: 120px;
    }
}