/* ══════════════════════════════════════════════════════════
   Home Page — index.html Specific Styles
   ══════════════════════════════════════════════════════════ */

/* ─── Hero Section ─── */
.home-hero {
    height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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-tagline {
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.home-hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-title-outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

.hero-description {
    max-width: 600px;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge .material-symbols-outlined {
    font-size: 2.5rem;
}

.hero-badge span:last-child {
    font-size: 0.8rem;
    font-weight: 700;
}


/* ─── Reservations Section ─── */
.reservations-section {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #0D0D0D;
}

.reservations-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.reservations-title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.reviews-header {
    margin-bottom: 1rem;
}

/* Google Rating Badge */
.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.google-rating-badge:hover {
    background: rgba(30, 30, 30, 0.6);
    transform: translateY(-2px);
}

.google-g-icon {
    flex-shrink: 0;
}

.rating-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0;
}

.star-filled {
    color: var(--accent-gold);
    font-size: 1rem;
}

.star-empty {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

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

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 140px;
}

.review-track {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.review-author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: color 0.2s ease;
}

a.review-author-name:hover {
    color: var(--accent-gold);
}

.review-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.review-card-stars {
    display: flex;
    gap: 0;
}

.review-card-stars .star-filled {
    font-size: 0.9rem;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.review-read-more {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-style: normal;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    transition: opacity 0.2s ease;
}

.review-read-more:hover {
    opacity: 0.7;
}

/* Carousel Navigation Arrows */
.review-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-nav-btn:hover {
    color: var(--accent-gold);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

/* Google Attribution */
.google-attribution {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.reservations-section .widget-container {
    display: flex;
    justify-content: center;
}

/* Constrain OpenTable wide widget iframe on desktop */
.reservations-section .widget-container iframe {
    max-height: 130px;
}

/* Style OpenTable widget text */
.widget-container h2,
.widget-container .ot-dtp-picker-selector-label {
    color: white !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .reservations-section {
        padding: 2rem 0 1rem;
    }

    .reservations-top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .reservations-title {
        font-size: 1.8rem;
    }

    .reviews-carousel {
        gap: 0.5rem;
        min-height: 100px;
    }

    .review-track {
        min-height: 90px;
    }

    .review-card {
        padding: 1rem 0.85rem;
    }

    .review-text {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .review-nav-btn {
        width: 32px;
        height: 32px;
    }

    .review-nav-btn .material-symbols-outlined {
        font-size: 1.1rem;
    }

    .google-rating-badge {
        padding: 0.5rem 0.85rem;
    }

    .rating-number {
        font-size: 1.1rem;
    }

    .google-attribution {
        margin-bottom: 1rem;
    }

    .reservations-section .widget-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .reservations-section .widget-container iframe {
        max-height: none;
    }
}


/* ─── Cascading Feature Sections ─── */
.cascade-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.cascade-section--overlap {
    margin-top: -10vh;
    z-index: 10;
}

.cascade-section--overlap-2 {
    margin-top: -10vh;
    z-index: 20;
}

.cascade-container-full {
    height: 100%;
}

.cascade-flex-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cascade-flex-end {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.cascade-flex {
    display: flex;
    height: 100%;
}

.cascade-image-panel {
    width: 100%;
    height: 70vh;
    position: relative;
}

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

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

.cascade-overlay-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(128, 0, 32, 0.4), transparent);
}

.cascade-text-left {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
}

.cascade-text-right {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    text-align: right;
}

.cascade-label {
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.cascade-heading {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 2rem;
}

.cascade-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-icon {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {

    .cascade-text-left,
    .cascade-text-right {
        left: 5%;
        right: 5%;
        text-align: left;
        max-width: 90%;
    }

    .cascade-image-panel {
        height: 60vh;
    }

    .cascade-section--overlap,
    .cascade-section--overlap-2 {
        margin-top: -5vh;
    }
}


/* ─── Executive Special / Surf & Turf Section ─── */
.executive-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.executive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.executive-badge {
    padding: 0.5rem 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
}

.executive-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .executive-title {
        font-size: 2.5rem;
    }
}

.executive-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.executive-image-wrapper {
    position: relative;
}

.executive-image-border {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.executive-image {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2);
}

/* ─── Dual Feature Grid (Side by Side) ─── */
.dual-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10rem 10%;
    gap: 6rem;
    position: relative;
    z-index: 15;
    background: var(--bg-dark);
}

.feature-card-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    background: #000;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-link:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.feature-card-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
}

.feature-card-link:hover .feature-card-img {
    transform: scale(1.02);
    filter: brightness(1);
}

.feature-overlay {
    position: absolute;
    inset: 1.5rem;
    /* Match the padding of the card */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-card-link:hover .feature-overlay {
    opacity: 1;
}

.feature-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    padding: 3rem;
    width: auto;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.feature-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.feature-card-link:hover .feature-label {
    transform: translateY(0);
    opacity: 1;
}

.feature-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Button animation within card */
.feature-btn-wrap {
    display: inline-flex;
    align-items: center;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.feature-card-link:hover .feature-btn-wrap {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .dual-feature-grid {
        grid-template-columns: 1fr;
        padding: 4rem 1rem;
        gap: 3rem;
    }

    .feature-card-link {
        padding: 1rem;
    }

    .feature-overlay {
        inset: 1rem;
    }

    .feature-card-img {
        aspect-ratio: 1/1;
    }

    .feature-content {
        padding: 1.5rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .feature-label {
        opacity: 1;
        transform: translateY(0);
    }
}