/**
 * Alara — veřejný web (cozy, moderní, vzdušný)
 */

:root {
    --primary-color: #a0784a;
    --primary-dark: #856341;
    --secondary-color: #2c2825;
    --text-color: #3d3835;
    --text-light: #736e6a;
    --bg-light: #f5f2ed;
    --white: #ffffff;
    --border-color: #e8e3dc;
    --shadow: 0 6px 32px rgba(44, 40, 37, 0.06);
    --shadow-hover: 0 16px 48px rgba(44, 40, 37, 0.1);

    --radius: 14px;
    --radius-lg: 22px;
    --nav-h: 76px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg-light);
    font-size: 1.02rem;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* --- Layout --- */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
    opacity: 0.85;
    margin-bottom: 0.65rem;
}

.section-eyebrow--left {
    text-align: left;
}

.section-lead {
    text-align: center;
    color: var(--text-light);
    max-width: 36rem;
    margin: 0 auto 2.75rem;
    font-size: 1.05rem;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color) 15%,
        var(--border-color) 85%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.site-header.is-scrolled::after {
    opacity: 1;
}

.navbar {
    background: transparent;
    box-shadow: none;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem clamp(1.25rem, 4vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--nav-h);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: center;
}

.nav-menu a:not(.btn-reservation) {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.94rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.35rem 0;
}

.nav-menu a:not(.btn-reservation)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.28s ease;
    opacity: 0.7;
}

.nav-menu a:not(.btn-reservation):hover::after,
.nav-menu a:not(.btn-reservation).active::after {
    width: 100%;
}

.nav-menu a:not(.btn-reservation):hover,
.nav-menu a:not(.btn-reservation).active {
    color: var(--primary-dark);
}

.btn-reservation {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.62rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(160, 120, 74, 0.25);
}

.btn-reservation:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.45rem;
    cursor: pointer;
    color: var(--secondary-color);
    z-index: 9100;
    position: relative;
    padding: 0.35rem;
    border-radius: var(--radius);
}

main {
    min-height: calc(100vh - 200px);
}

/* --- Footer --- */
.footer {
    background: linear-gradient(165deg, #252220 0%, #1a1816 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: clamp(3rem, 6vw, 4rem) 0 1.75rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #e8ddd0;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 1.75;
    font-size: 0.96rem;
}

.footer-section a:hover {
    color: #f0e6d8;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.35rem;
    opacity: 0.85;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
        box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(160, 120, 74, 0.28);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
}

.page-content-section {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--white);
}

.page-content-text {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.85;
    color: var(--text-color);
}

.page-content-text h1,
.page-content-text h2,
.page-content-text h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-text p {
    margin-bottom: 1rem;
}

.page-content-text ul,
.page-content-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.page-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1rem 0;
}

/* --- Home: Hero --- */
.hero {
    min-height: clamp(520px, 72vh, 780px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
    transform: scale(1.03);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(37, 34, 32, 0.72) 0%,
        rgba(37, 34, 32, 0.45) 45%,
        rgba(160, 120, 74, 0.35) 100%
    );
    z-index: 2;
}

.hero-content {
    max-width: 42rem;
    padding: 2rem clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 3;
}

.hero-panel {
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero h1 {
    font-size: clamp(2.35rem, 6vw, 3.65rem);
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.94;
    font-weight: 400;
    line-height: 1.55;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Home: About --- */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-text {
    order: 1;
}

.about-image {
    order: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 4 / 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.about-text .btn-primary {
    margin-top: 0.5rem;
}

/* --- Home: Info --- */
.info-section {
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.info-card-icon-wrap {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-card-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.info-card-icon {
    font-size: 2.25rem;
    line-height: 1;
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* --- Home: Events --- */
.events-section {
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 100%
    );
    color: var(--white);
    padding: 1.35rem 1.35rem 1.1rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.event-date .day {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.event-date .month {
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    opacity: 0.95;
}

.event-content {
    padding: 1.35rem 1.35rem 1.45rem;
}

.event-content h3 {
    font-size: 1.32rem;
    margin-bottom: 0.45rem;
    color: var(--secondary-color);
}

.event-content p {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.98rem;
}

.event-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--secondary-color);
    background: rgba(160, 120, 74, 0.1);
    border: 1px solid rgba(160, 120, 74, 0.22);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

.event-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary-color);
}

.event-cta {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}

.event-cta:hover {
    text-decoration: underline;
}

.no-events {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

/* --- Home: Reviews --- */
.reviews-section {
    background: var(--bg-light);
}

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

.reviews-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.reviews-rating-num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    color: var(--primary-color);
}

.reviews-stars {
    display: flex;
    gap: 0.15rem;
}

.reviews-stars .star {
    font-size: 1.45rem;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 24px 0;
    margin: 0 -12px;
}

.reviews-carousel-wrapper .container {
    overflow: visible;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 16px 8px;
    margin: -16px -8px;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 260px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.review-author-info h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 0.12rem;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.review-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    word-wrap: break-word;
    flex: 1;
    font-size: 0.96rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.75rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4cfc8;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.15);
}

/* --- Menu page --- */
.menu-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
}

.category-nav {
    position: sticky;
    top: calc(var(--nav-h) - 4px);
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.category-nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-nav-list {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.category-nav-link {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
    font-size: 0.88rem;
    white-space: nowrap;
    border: 1px solid transparent;
}

.category-nav-link:hover,
.category-nav-link.active {
    background: rgba(160, 120, 74, 0.12);
    color: var(--primary-dark);
    border-color: rgba(160, 120, 74, 0.22);
}

.menu-categories {
    max-width: 960px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 3rem;
    scroll-margin-top: 130px;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-header h2 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
}

.category-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.menu-items {
    display: grid;
    gap: 0.85rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 1.15rem;
    padding: 1.15rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    align-items: center;
    border: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.menu-item:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.menu-item-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.menu-item-content h3 {
    font-size: 1.18rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.menu-item-content p {
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    font-size: 0.92rem;
}

.menu-item-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

.no-image {
    width: 88px;
    height: 88px;
    background: linear-gradient(
        145deg,
        var(--primary-color),
        var(--primary-dark)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
}

.no-menu {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

.no-menu h2 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

/* --- Gallery --- */
.gallery-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

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

.no-gallery {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}

.no-gallery h2 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-album-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    background: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-album-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-album-card-media {
    aspect-ratio: 4 / 3;
    background: var(--bg-light);
    overflow: hidden;
}

.gallery-album-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-album-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery-album-card-body {
    padding: 1.25rem 1.35rem;
}

.gallery-album-card-title {
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
    color: var(--secondary-color);
}

.gallery-album-card-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gallery-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.gallery-breadcrumb a:hover {
    text-decoration: underline;
}

.gallery-breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.gallery-album-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 13, 0.94);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 92%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    font-size: 1.65rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
}

/* --- Contact --- */
.contact-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.contact-header .section-title {
    margin-bottom: 0.65rem;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.96rem;
}

.contact-details a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 420px;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.map-placeholder code {
    font-size: 0.85em;
    background: rgba(0, 0, 0, 0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.opening-hours {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.opening-hours h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.96rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--secondary-color);
}

.hours-list .time {
    color: var(--text-light);
}

/* --- Reservation --- */
.reservation-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--bg-light);
}

.reservation-container {
    max-width: 640px;
    margin: 0 auto;
}

.reservation-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reservation-header .section-title {
    margin-bottom: 0.65rem;
}

.reservation-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.reservation-form {
    background: var(--white);
    padding: clamp(2rem, 5vw, 2.75rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(160, 120, 74, 0.45);
    box-shadow: 0 0 0 3px rgba(160, 120, 74, 0.12);
}

select.form-control,
select.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23736e6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: rgba(160, 120, 74, 0.45);
    box-shadow: 0 0 0 3px rgba(160, 120, 74, 0.12);
}

.form-control.error {
    border-color: #c75c5c;
}

.form-error {
    color: #b54545;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: #ecf7ee;
    color: #1e5c2e;
    border: 1px solid #c5e6cb;
}

.alert-error {
    background: #fdf0f0;
    color: #8f2a2a;
    border: 1px solid #f0cbcb;
}

.info-box {
    background: rgba(160, 120, 74, 0.08);
    border: 1px solid rgba(160, 120, 74, 0.2);
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.75rem;
    border-radius: var(--radius);
}

.info-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: var(--secondary-color);
    font-family: "DM Sans", sans-serif;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Weekly menu --- */
.weekly-menu-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
}

.weekly-menu-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.weekly-menu-date {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.weekly-menu-content {
    max-width: 920px;
    margin: 0 auto;
}

.menu-items-grid {
    display: grid;
    gap: 1.5rem;
}

.menu-item-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    border: 1px solid var(--border-color);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.menu-item-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.menu-item-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(
        145deg,
        var(--primary-color),
        var(--primary-dark)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.menu-item-info h3 {
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    color: var(--text-light);
    line-height: 1.75;
    margin: 0;
    font-size: 0.98rem;
}

.weekly-menu-section .no-menu {
    text-align: center;
    padding: 4rem 2rem;
}

.weekly-menu-section .no-menu .btn-primary {
    margin-top: 1.75rem;
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.65s ease-out both;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100dvh - var(--nav-h));
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem 1.5rem 3rem;
        gap: 0.25rem;
        transition: transform 0.35s ease, opacity 0.35s ease;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        box-shadow: var(--shadow-hover);
        z-index: 9050;
        align-items: stretch;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        padding: 0.65rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-menu a:not(.btn-reservation)::after {
        display: none;
    }

    .btn-reservation {
        width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        order: 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-outline {
        color: var(--white);
    }

    .review-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 0;
    }

    .menu-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.85rem;
    }

    .menu-item-image,
    .no-image {
        margin: 0 auto;
    }

    .menu-item-price {
        text-align: center;
    }

    .category-nav {
        top: 56px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-item-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-item-image-wrapper,
    .menu-item-placeholder {
        margin: 0 auto;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
