/* Restaurant page styles */

.restaurant-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--color-ink);
}

.restaurant-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.restaurant-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.restaurant-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(11, 11, 14, 0.2) 0%,
        rgba(11, 11, 14, 0.9) 100%
    );
}

.restaurant-hero__content {
    position: relative;
    z-index: 2;
    padding-block: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    width: 100%;
}

.restaurant-hero__eyebrow {
    color: var(--color-gold);
    margin: 0;
}

.restaurant-hero__title {
    margin: 0;
    max-width: 12ch;
}

.restaurant-hero__lead {
    color: var(--color-grey);
    font-size: var(--text-body-large-size);
    line-height: var(--text-body-large-line-height);
    max-width: 46ch;
    margin: 0;
}

.restaurant-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-block-start: var(--space-xs);
}

.restaurant-hero__actions .btn {
    width: 100%;
}

.restaurant-section {
    padding-block: var(--space-2xl);
}

.restaurant-section__eyebrow {
    color: var(--color-gold);
    margin-block-end: var(--space-xs);
}

/* Steakhouse */
.restaurant-steakhouse__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.restaurant-steakhouse__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
}

.restaurant-steakhouse__text h2 {
    margin-block-end: 0;
}

.restaurant-steakhouse__lead {
    color: var(--color-grey);
    font-size: var(--text-body-large-size);
    line-height: var(--text-body-large-line-height);
    margin: 0;
}

.restaurant-steakhouse__text p {
    margin: 0;
}

.restaurant-steakhouse__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.restaurant-steakhouse__list li {
    position: relative;
    padding-inline-start: var(--space-md);
    color: var(--color-grey);
}

.restaurant-steakhouse__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.restaurant-steakhouse__figure,
.restaurant-bar__figure,
.restaurant-dining-room__figure {
    margin: 0;
    border: 1px solid var(--color-line);
    border-radius: 0;
    overflow: hidden;
    background-color: var(--color-surface);
}

.restaurant-steakhouse__figure img,
.restaurant-bar__figure img,
.restaurant-dining-room__figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-transform);
}

.restaurant-steakhouse__figure:hover img,
.restaurant-bar__figure:hover img,
.restaurant-dining-room__figure:hover img {
    transform: scale(1.02);
}

.restaurant-steakhouse__figure figcaption,
.restaurant-bar__figure figcaption,
.restaurant-dining-room__figure figcaption {
    padding: var(--space-xs) var(--space-sm);
    border-block-start: 1px solid var(--color-line);
    margin: 0;
}

/* Burgers */
.restaurant-burgers__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    max-width: 700px;
    margin-inline: auto;
}

.restaurant-burgers__eyebrow {
    text-align: center;
}

.restaurant-burgers__wrapper h2 {
    margin-block-end: 0;
}

.restaurant-burgers__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
}

.restaurant-burgers__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.restaurant-burgers__item h3 {
    margin: 0;
}

.restaurant-burgers__item p {
    margin: 0;
    color: var(--color-grey);
}

/* Bar */
.restaurant-bar__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.restaurant-bar__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
}

.restaurant-bar__text h2 {
    margin-block-end: 0;
}

.restaurant-bar__text p {
    margin: 0;
}

/* Poker-side dining */
.restaurant-poker-dining__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    border-inline-start: 2px solid var(--color-gold);
    padding-inline-start: var(--space-md);
}

.restaurant-poker-dining__wrapper h2 {
    margin-block-end: 0;
}

.restaurant-poker-dining__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.restaurant-poker-dining__content article {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.restaurant-poker-dining__content h3 {
    margin: 0;
}

.restaurant-poker-dining__content p {
    margin: 0;
    color: var(--color-grey);
}

/* Dining room */
.restaurant-dining-room__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.restaurant-dining-room__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
}

.restaurant-dining-room__text h2 {
    margin-block-end: 0;
}

.restaurant-dining-room__text p {
    margin: 0;
}

/* Menu highlights */
.restaurant-menu-highlights__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    max-width: 700px;
    margin-inline: auto;
}

.restaurant-menu-highlights__eyebrow {
    text-align: center;
}

.restaurant-menu-highlights__wrapper h2 {
    margin-block-end: 0;
}

.restaurant-menu-highlights__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
}

.restaurant-menu-highlights__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.restaurant-menu-highlights__item h3 {
    margin: 0;
}

.restaurant-menu-highlights__item p {
    margin: 0;
    color: var(--color-grey);
}

/* Reservations */
.restaurant-reservations__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 600px;
}

.restaurant-reservations__wrapper h2 {
    margin-block-end: 0;
}

.restaurant-reservations__wrapper p {
    margin: 0;
}

.restaurant-reservations__phone a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.restaurant-reservations__phone a:hover {
    color: var(--color-gold-dim);
}

.restaurant-reservations__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-block-start: var(--space-xs);
}

.restaurant-reservations__actions .btn {
    width: 100%;
}

/* Tablet */
@media (min-width: 768px) {
    .restaurant-hero {
        min-height: 85vh;
        align-items: center;
    }

    .restaurant-hero__content {
        padding-block: var(--space-2xl);
        gap: var(--space-lg);
    }

    .restaurant-hero__lead {
        max-width: 50%;
    }

    .restaurant-hero__actions .btn {
        width: auto;
    }

    .restaurant-steakhouse__grid {
        grid-template-columns: 3fr 2fr;
        gap: var(--space-xl);
    }

    .restaurant-bar__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .restaurant-bar__text {
        text-align: right;
        align-items: flex-end;
    }

    .restaurant-bar__text p {
        text-align: right;
    }

    .restaurant-dining-room__grid {
        grid-template-columns: 11fr 9fr;
        gap: var(--space-xl);
    }

    .restaurant-reservations__actions .btn {
        width: auto;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .restaurant-section {
        padding-block: var(--space-3xl);
    }

    .restaurant-steakhouse__grid {
        grid-template-columns: 3fr 2fr;
    }

    .restaurant-bar__grid {
        grid-template-columns: 1fr 1fr;
    }

    .restaurant-dining-room__grid {
        grid-template-columns: 11fr 9fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .restaurant-steakhouse__figure img,
    .restaurant-bar__figure img,
    .restaurant-dining-room__figure img {
        transition: none;
    }

    .restaurant-steakhouse__figure:hover img,
    .restaurant-bar__figure:hover img,
    .restaurant-dining-room__figure:hover img {
        transform: none;
    }
}
