/* ══════════════════════════════════════════════════════════
   Shared Page Styles — Reusable patterns across inner pages
   Used by: contact, gift-cards, singing-servers, bronzes, menu heroes
   ══════════════════════════════════════════════════════════ */

/* ─── Page Hero (shared across all inner pages) ─── */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.page-hero--short {
    height: 50vh;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-bg-img--bright {
    filter: brightness(0.6);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0A0A0A, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content--center {
    text-align: center;
}

.hero-tagline {
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
}

.page-hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}


/* ─── Section Spacing ─── */
.section-padded {
    padding: 6rem 0;
}


/* ─── Content Cards ─── */
.content-card {
    padding: 4rem;
    margin-bottom: 6rem;
}

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

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.content-text--body {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}


/* ─── Highlight / Feature Grids ─── */
.highlights-heading {
    margin-bottom: 3rem;
}

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

.highlight-card {
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-title {
    margin-bottom: 1rem;
}


/* ─── Gallery ─── */
.gallery-item {
    height: 400px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.gallery-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}


/* ─── Gift Cards ─── */
.gift-card-panel {
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gift-card-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.gift-card-cta {
    margin-top: 3rem;
}


/* ─── Contact Page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-block {
    margin-bottom: 3rem;
}

.contact-block-title {
    margin-bottom: 1rem;
}

.contact-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: white;
}

.contact-directions-link {
    display: inline-block;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hours-list {
    list-style: none;
}

.hours-row {
    max-width: 400px;
}

.reservation-sidebar {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation-sidebar-title {
    margin-bottom: 2rem;
}

.map-embed {
    margin-top: 6rem;
    height: 400px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-embed iframe {
    border: 0;
}

/* ─── Contact Form (New) ─── */
.contact-form-container {
    padding: 3rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
    text-transform: none;
    /* Override default uppercase if needed, screenshot is Title Case */
}

.form-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 0.25rem;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.char-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.form-submit-btn {
    width: 100%;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    background-color: var(--text-main);
    /* White button like screenshot */
    color: #000;
    border: none;
}

.form-submit-btn:hover {
    background-color: var(--accent-gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-left {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}