body {
    font-family: 'Playfair Display', serif;
}

/* Skip to main content (WCAG 2.1 – keyboard / screen reader) */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    background: #000000;
    color: #ffffff;
    border-radius: 0.25rem;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

/* Golden accent - ensure it applies everywhere even if Tailwind loads late */
.text-brand-accent,
[class*="text-brand-accent"] {
    color: #c9a96e;
}

/* Why Choose Our Offers? – gold circle + white icon (no Tailwind dependency) */
.offers-icon-circle {
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
    border-radius: 9999px;
    background-color: #c9a96e;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) {
    .offers-icon-circle {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }
}
.offers-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    stroke: #ffffff;
}
.offers-icon-svg path {
    stroke: #ffffff;
}
@media (min-width: 640px) {
    .offers-icon-svg {
        width: 2rem;
        height: 2rem;
    }
}

/* Hero "Our Services" button: white text must turn black on hover/focus so it's visible on white background */
#hero a[href="#services"] {
    color: #ffffff;
}
#hero a[href="#services"]:hover,
#hero a[href="#services"]:focus,
#hero a[href="#services"]:focus-visible,
#hero a[href="#services"]:active {
    background-color: #ffffff;
    color: #000000;
}

/* Anchor targets: sit below fixed header when scrolling from nav */
#hero,
#offers,
#highlights,
#services,
#gallery,
#artists,
#reviews,
#contact {
    scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
    #hero, #offers, #highlights, #services, #gallery, #artists, #reviews, #contact {
        scroll-margin-top: 5.5rem;
    }
}

/* Footer: always black background (as original) */
#footer,
#footer footer,
footer#footer {
    background-color: #000000;
    color: #ffffff;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-400 {
    animation-delay: 400ms;
}

.animation-delay-600 {
    animation-delay: 600ms;
}

/* ========== Interaction: nav links ========== */
#header nav a[href^="#"],
#mobile-menu a[href^="#"] {
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease, box-shadow 0.2s ease;
}
#header nav a[href^="#"]::after,
#mobile-menu a[href^="#"]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #000000;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
#header nav a[href^="#"]:hover::after,
#mobile-menu a[href^="#"]:hover::after {
    transform: scaleX(1);
}
#header nav a[href^="#"]:hover,
#mobile-menu a[href^="#"]:hover {
    color: #000000;
}
#header nav a[href^="#"].nav-current,
#mobile-menu a[href^="#"].nav-current {
    color: #000000;
    font-weight: 600;
}
#header nav a[href^="#"].nav-current::after,
#mobile-menu a[href^="#"].nav-current::after {
    transform: scaleX(1);
}
#header nav a[href^="#"]:focus-visible,
#mobile-menu a[href^="#"]:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 4px;
}

/* ========== Services accordions: compact header, balanced arrow ========== */
#services details {
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
#services details[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d4d4d4;
    border-left: 4px solid #c9a96e;
}
#services details summary {
    list-style: none;
    padding: 0.875rem 1.25rem;
    gap: 1rem;
    align-items: center;
    transition: background-color 0.2s ease;
}
#services details summary::-webkit-details-marker {
    display: none;
}
#services details summary > div {
    flex: 1;
    min-width: 0;
}
#services details summary h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    line-height: 1.3;
}
#services details summary p {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #525252;
}
@media (min-width: 640px) {
    #services details summary {
        padding: 1rem 1.25rem;
    }
    #services details summary h3 {
        font-size: 1.375rem;
    }
}
#services details summary svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    color: #737373;
    transition: transform 0.25s ease;
}
#services details[open] summary svg {
    transform: rotate(180deg);
}
#services details[open] summary {
    background-color: #ebebeb;
    border-bottom: 1px solid #e5e5e5;
}
#services details summary:hover {
    background-color: #f0f0f0;
}
#services details summary:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}
#services details > div {
    padding: 1.25rem 1.25rem;
    border-top: 1px solid #e5e5e5;
}
@media (min-width: 640px) {
    #services details > div {
        padding: 1.5rem 1.5rem;
    }
}

/* ========== FAQ accordion: size, spacing, match services polish ========== */
#faqs {
    scroll-margin-top: 5rem;
}
#faqs details {
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
#faqs details[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d4d4d4;
    border-left: 4px solid #c9a96e;
}
#faqs details summary {
    list-style: none;
    padding: 1rem 1.25rem;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s ease;
}
#faqs details summary::-webkit-details-marker {
    display: none;
}
#faqs details summary span {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
}
@media (min-width: 640px) {
    #faqs details summary span {
        font-size: 1.125rem;
    }
}
#faqs details summary svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    color: #737373;
    transition: transform 0.25s ease;
}
#faqs details[open] summary svg {
    transform: rotate(180deg);
}
#faqs details[open] summary {
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}
#faqs details summary:hover {
    background-color: #f5f5f5;
}
#faqs details summary:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}
#faqs details > div {
    padding: 0 1.25rem 1.25rem;
    border-top: none;
}
#faqs details > div p {
    margin: 0;
    padding-top: 0.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
}

/* ========== About (#highlights) section: two-column layout, card accent ========== */
.section-title-caps {
    letter-spacing: 0.02em;
}
#highlights .highlights-intro {
    max-width: 36rem;
}
#highlights .highlights-card {
    border-left: 4px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#highlights .highlights-card:hover {
    border-left-color: #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
#highlights .highlights-card-num {
    color: #c9a96e;
}

/* ========== Interaction: cards and buttons ========== */
/* Service/package/highlight cards: subtle golden border on hover */
#main .bg-neutral-50.border-neutral-200:hover,
#main .bg-brand-secondary.border-neutral-200:hover,
#offers .bg-neutral-50:hover {
    border-color: #c9a96e;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
/* Book Now buttons: slight scale on hover for feedback */
a.bg-green-500 {
    transition: background-color 0.2s ease, transform 0.2s ease;
}
a.bg-green-500:hover {
    transform: scale(1.02);
}
a.bg-green-500:focus-visible,
button:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}
#hero a[href="#services"]:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
#footer a:focus-visible {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
}

/* ========== Designer polish: section titles, reduced motion, selection ========== */
/* All-caps section titles: subtle letter-spacing for readability */
#faqs .text-center h2,
#services .text-center h2,
#reviews .text-center h2,
#contact .text-center h2,
section[id] .text-center h2.text-4xl {
    letter-spacing: 0.02em;
}
/* Refined text selection color (brand accent) */
::selection {
    background-color: rgba(201, 169, 110, 0.25);
    color: inherit;
}
/* Respect reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    #header nav a[href^="#"]::after,
    #mobile-menu a[href^="#"]::after {
        transition: none;
    }
    #services details summary svg,
    #faqs details summary svg {
        transition: none;
    }
}
