/* RESTAURANT CONTENT — data-driven sections */

/* ========================================
   HERO — fixed viewport for iOS (100svh)
   ======================================== */

.inner-page-hero {
    position: relative;
    height: calc(var(--vh) * 100);
    overflow: hidden;
}

@supports (height: 100svh) {
    .inner-page-hero {
        height: 100svh;
    }
}

.inner-page-hero-wallpaper {
    position: relative;
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.inner-page-hero-wallpaper-container {
    position: absolute;
    height: 100%;
    width: 100%;
}

.inner-page-hero-image {
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

.inner-page-hero-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 103%;
    z-index: 2;
    background: linear-gradient(8.99deg, #111111 2.11%, rgba(17, 17, 17, 0) 42.61%),
                linear-gradient(172.59deg, rgba(17, 17, 17, 0) 57.19%, #111111 98.26%);
}

@media (min-width: 715px) {
    .inner-page-hero-overlay {
        background: linear-gradient(15.65deg, #111111 3.86%, rgba(17, 17, 17, 0) 54.05%),
                    linear-gradient(337.73deg, #111111 6.02%, rgba(17, 17, 17, 0) 55.49%),
                    linear-gradient(180.05deg, rgba(17, 17, 17, 0) 20.09%, #111111 96.61%);
    }
}

.inner-page-hero-content {
    position: absolute;
    z-index: 3;
    text-align: center;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

@media (max-width: 991.98px) { .inner-page-hero-content { bottom: 12%; } }

.inner-page-hero-undertitle {
    color: var(--text-color-light-2);
    font-size: 14rem;
    line-height: 100%;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 0.05;
    z-index: 0;
    position: absolute;
    top: -7rem;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 991.98px) { .inner-page-hero-undertitle { font-size: 6rem; top: -3rem; } }
@media (max-width: 575.98px) { .inner-page-hero-undertitle { font-size: 4rem; top: -2rem; } }

.inner-page-hero-title {
    font-size: 124px;
    line-height: 100%;
    font-family: 'Cormorant', serif;
    font-weight: 300;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--text-color-light-1);
    z-index: 1;
    padding-bottom: 1rem;
    text-transform: none;
    position: relative;
}

@media (max-width: 991.98px) { .inner-page-hero-title { font-size: 5rem; } }
@media (max-width: 767.98px) { .inner-page-hero-title { font-size: 4rem; } }
@media (max-width: 575.98px) { .inner-page-hero-title { font-size: 3.2rem; padding-bottom: 0.5rem; } }
@media (max-width: 374.98px) { .inner-page-hero-title { font-size: 2.8rem; } }

.inner-page-hero-labels { gap: 1.5rem; position: relative; z-index: 1; }
.inner-page-hero-label { color: var(--text-color-light-2); transition: all 0.5s ease; padding: 0.5rem 0; }
.inner-page-hero-label-text { color: var(--text-color-light-2); font-size: 11px; letter-spacing: var(--letter-space-small); text-transform: uppercase; line-height: 100%; transition: all 0.5s ease; }
.inner-page-hero-label svg { height: 11px; width: 11px; margin-right: 0.4rem; transition: all 0.5s ease; }

@media (max-width: 480px) {
    .inner-page-hero-labels { flex-direction: column; gap: 0; }
    .inner-page-hero-label { padding: 0.3rem 0; }
    .inner-page-hero-label-text { font-size: 10px; }
}


/* ========================================
   SWIPER GALLERY — replaces photo divider
   ======================================== */

.rc-gallery {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.rc-gallery-swiper {
    width: 100%;
    height: 100%;
}

.rc-gallery-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.rc-gallery-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 25%;
    z-index: 2;
    pointer-events: none;
}

.rc-gallery-overlay--top {
    top: 0;
    background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}

.rc-gallery-overlay--bottom {
    bottom: 0;
    background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}

.rc-gallery .swiper-pagination {
    z-index: 3;
}

.rc-gallery .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.rc-gallery .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 767.98px) {
    .rc-gallery { height: 35vh; }
}


/* ========================================
   INFO SECTION — compact cards
   ======================================== */

.rc-info { padding: 5rem 0 3rem; }

.rc-info-overtitle {
    font-size: 10px;
    letter-spacing: var(--letter-space-small);
    text-transform: uppercase;
    color: var(--text-color-light-2);
    margin-bottom: 1rem;
    text-align: center;
}

.rc-info-title {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 3.5rem;
    color: var(--text-color-light-1);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 110%;
}

@media (max-width: 767.98px) { .rc-info-title { font-size: 2.2rem; } }

.rc-info-text {
    font-size: 14px;
    line-height: 180%;
    color: var(--text-color-light-2);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.rc-info-cards { margin-top: 3rem; }

.rc-card {
    text-align: center;
    padding: 1.5rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.rc-card:hover { border-color: rgba(255, 255, 255, 0.12); }

.rc-card--booking {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.rc-card--booking:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

.rc-card-icon { margin-bottom: 0.6rem; }
.rc-card-icon svg { height: 22px; width: 22px; color: var(--text-color-light-2); }

.rc-card-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color-light-2);
    margin-bottom: 0.4rem;
}

.rc-card-value {
    font-family: 'Cormorant', serif;
    font-size: 1rem;
    color: var(--text-color-light-1);
    line-height: 130%;
}

.rc-card-value a {
    color: var(--text-color-light-1);
    text-decoration: none;
    transition: all 0.5s ease;
}

.rc-card-value a:hover { color: var(--text-color-light-2); }


/* ========================================
   MENU EXCERPT
   ======================================== */

.rc-menu {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-menu-item {
    display: flex;
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-menu-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-menu-item-name {
    font-family: 'Cormorant', serif;
    font-size: 1.15rem;
    color: var(--text-color-light-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rc-menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 0.75rem;
    min-width: 20px;
    position: relative;
    top: -4px;
}

.rc-menu-item-price {
    font-family: 'Cormorant', serif;
    font-size: 1.15rem;
    color: var(--text-color-light-2);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .rc-menu-item-name { font-size: 1rem; }
    .rc-menu-item-price { font-size: 1rem; }
}


/* ========================================
   NEWS / PROMO SECTION
   ======================================== */

.rc-news {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-news-grid { margin-top: 2.5rem; }

.rc-news-card {
    display: block;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.rc-news-card:hover { opacity: 0.85; }

.rc-news-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.rc-news-card-date {
    font-size: 10px;
    letter-spacing: var(--letter-space-small);
    text-transform: uppercase;
    color: var(--text-color-light-2);
    margin-bottom: 0.5rem;
}

.rc-news-card-title {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-color-light-1);
    line-height: 130%;
    margin-bottom: 0.5rem;
}

.rc-news-card-text {
    font-size: 13px;
    line-height: 170%;
    color: var(--text-color-light-2);
}


/* ========================================
   DELIVERY SECTION
   ======================================== */

.rc-delivery {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-delivery-badges {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.rc-delivery-badges img { height: 40px; transition: all 0.5s ease; }
.rc-delivery-badges img:hover { opacity: 0.8; }

.rc-delivery-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 575.98px) {
    .rc-delivery-links { flex-direction: column; align-items: center; gap: 1rem; }
}


/* ========================================
   PREMIUM BUTTON
   ======================================== */

.rc-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-color-light-1);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.rc-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #111;
    border-color: rgba(255, 255, 255, 1);
}

.rc-btn:active {
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 575.98px) {
    .rc-btn {
        padding: 12px 32px;
        font-size: 10px;
    }
}


/* ========================================
   FOOTER CONTACTS + MAP — premium layout
   ======================================== */

.rc-footer-contacts {
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-footer-details {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rc-footer-detail {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-footer-detail:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-footer-detail-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color-light-2);
    flex-shrink: 0;
    min-width: 100px;
}

.rc-footer-detail-value {
    font-family: 'Cormorant', serif;
    font-size: 1.15rem;
    color: var(--text-color-light-1);
    text-align: right;
    line-height: 140%;
}

.rc-footer-detail-value a {
    color: var(--text-color-light-1);
    text-decoration: none;
    transition: color 0.4s ease;
}

.rc-footer-detail-value a:hover {
    color: var(--text-color-light-2);
}

.rc-footer-contacts .rc-btn {
    margin-bottom: 4rem;
}

.rc-footer-map {
    width: 100%;
    height: 300px;
    filter: grayscale(100%) brightness(0.4);
    transition: filter 0.5s ease;
}

.rc-footer-map:hover {
    filter: grayscale(50%) brightness(0.6);
}

.rc-footer-map iframe,
#mollusca-dg-map {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 767.98px) {
    .rc-footer-map { height: 220px; }
    .rc-footer-detail-label { min-width: 80px; }
    .rc-footer-detail-value { font-size: 1.05rem; }
}


/* ========================================
   OTHER RESTAURANTS — tighter cards, better overlay
   ======================================== */

.rc-others {
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-others-grid { margin-top: 3rem; }

.rc-others-item {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.rc-others-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease;
}

.rc-others-item:hover .rc-others-item-image {
    transform: scale(1.05);
}

/* Stronger gradient for text readability */
.rc-others-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.4) 40%, rgba(17, 17, 17, 0) 55%);
    z-index: 1;
}

/* Tighter padding */
.rc-others-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0.8rem;
    z-index: 2;
}

.rc-others-item-type {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color-light-2);
    margin-bottom: 0.3rem;
}

.rc-others-item-name {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-color-light-1);
    line-height: 120%;
    margin-bottom: 0.2rem;
}

.rc-others-item-address {
    font-size: 10px;
    color: var(--text-color-light-2);
    line-height: 140%;
}

@media (max-width: 575.98px) {
    .rc-others-item-content { padding: 0.8rem 0.6rem; }
    .rc-others-item-name { font-size: 1.1rem; }
    .rc-others-item-address { font-size: 9px; }
}
