/* ===== Language Switcher (Flags) ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-divider {
  color: rgba(255,255,255,0.35);
  margin: 0 4px;
}

.lang-flag {
  height: 14px; /* subtle size for footer */
  width: auto;
  cursor: pointer;
  border-radius: 2px;
  outline: none;
  vertical-align: middle;
  transition: box-shadow 0.15s ease, filter 0.15s ease;
  filter: none;
}

.lang-flag:hover { filter: brightness(1.05); }
.lang-flag:focus-visible { box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--accent-warm); }
.lang-flag.active { box-shadow: 0 0 0 1px #fff; }

/* Footer bottom layout */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* Keep flags visible and aligned on mobile */
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .lang-flag { height: 16px; }
}
/* ============================================
   SITE-WIDE NOTICE (MODAL)
   ============================================ */
.site-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 160ms ease-out both;
}

.site-modal-backdrop.closing {
  animation: fadeOut 160ms ease-in both;
}

.site-modal {
  background: #fff;
  color: #222;
  width: min(92vw, 560px);
  border-radius: 14px;
  box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.25));
  position: relative;
  padding: 1.25rem 1.25rem 1rem;
  transform: translateY(8px);
  animation: slideInUp 200ms ease-out both;
}

.site-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.site-modal-content h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-dark);
}

.site-modal-content p {
  margin: 0.25rem 0 0.75rem;
  line-height: 1.6;
}

.site-modal-actions {
  display: flex;
  justify-content: flex-end;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes slideInUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Quicklink floating button */
#site-notice-quicklink.site-modal-quicklink {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary-light);
  color: var(--text-light);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-lg, 0 6px 20px rgba(0,0,0,0.25));
  cursor: pointer;
}

#site-notice-quicklink.site-modal-quicklink:hover {
  background: var(--accent-warm);
  color: var(--primary-dark);
}
/* ============================================
   COFFI A BARA - STYLES
   ============================================ */

:root {
    --primary-dark: #0f2438;
    --primary-light: #1a3a52;
    --accent-warm: #d4a574;
    --accent-light: #f5f1ed;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --border-color: #e0d5c7;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--primary-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    /* links stay inline; flags will be pushed right instead */
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-warm);
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: auto;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: visible;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.hero-intro {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-light);
}

.hero-carousel {
    position: relative;
    width: 80vw;
    max-width: 900px;
    height: 60vh;
    max-height: 600px;
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    border: 8px solid var(--text-light);
    border-radius: 15px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-warm);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #e8b88a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 4rem 0;
}

.features-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-warm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-warm);
    border: 2px solid var(--accent-warm);
    transition: all 0.3s ease;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.about h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-article {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--accent-warm);
    backdrop-filter: blur(10px);
}

.about-article h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-article p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    text-align: center;
}

.about > .container > p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   HOURS SECTION
   ============================================ */

.hours {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hours h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.hours-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hours-grid h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hours-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hours-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-card a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-card a:hover {
    opacity: 0.8;
}

.map-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.map-link a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.map-link a:hover {
    opacity: 0.8;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hours-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.time {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-warm);
    white-space: nowrap;
}

.time.closed {
    color: #ff6b6b;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.contact h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.social-intro {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-info,
.contact-address {
    border: 2px solid var(--text-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info,
.contact-address {
    text-align: center;
}

.social-links {
    text-align: center;
    margin-top: 2rem;
    border: 2px solid var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info h3,
.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info a,
.contact-address a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover,
.contact-address a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-warm);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 2rem;
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto 2rem;
    text-align: left;
    align-items: flex-start;
}

.footer-rating {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-warm);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-warm);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .logo {
        height: 50px;
    }

    .hero {
        padding: 1.5rem;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-intro h1 {
        font-size: 1.8rem;
    }

    .hero-intro p {
        font-size: 0.95rem;
    }

    .hero-carousel {
        width: 95vw;
        height: 50vh;
        max-height: 400px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .about h2,
    .hours h2,
    .contact h2 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

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

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hours-info {
        grid-template-columns: 1fr;
    }

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

    .social-icons {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-rating {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 1rem 15px;
        min-height: 50vh;
    }

    .hero-intro h1 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .hero-intro p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-carousel {
        width: 100vw;
        height: 40vh;
        max-height: 300px;
        margin: 0 -15px;
    }

    .carousel-container {
        border-width: 4px;
        border-radius: 8px;
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .contact-content,
    .hours-info {
        max-width: 100%;
    }

    .contact-info, .contact-address, .info-card, .hours-item {
        padding: 1.5rem 1rem;
    }

    .social-links {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.reviews h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-light);
}

.reviews-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  opacity: 0.9;
}

.reviews-block {
  max-width: none;
  width: 100%;
  margin: 0 0 2.5rem 0;
}

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

.reviews-header h2 {
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Two-column layout for Google + TripAdvisor blocks */
.reviews-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.reviews-embed,
.tripadvisor-widget {
  width: 100%;
}

/* Force SociableKIT widgets to occupy full width */
.reviews-embed .sk-ww-google-reviews,
.reviews-embed .sk-ww-tripadvisor-reviews {
  width: 100% !important;
}
.reviews-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Allow the container to be wider on the reviews page */
.reviews .container {
  max-width: 80%;
  width: -webkit-fill-available;
  margin: 0 auto;
}

/* Tabs */
.reviews-tabs { margin-top: 1rem; }
.tabs-header {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.tab-btn {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.tab-btn.active,
.tab-btn[aria-selected="true"] {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}
.tabs-content { width: 100%; }
.tab-pane { width: 100%; }
.tab-pane[hidden] { display: none; }

.reviews-empty,
.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

.review-card {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(10px);
}

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

.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 600; color: var(--text-light); }
.review-time { font-size: 0.85rem; opacity: 0.85; color: var(--text-light); }
.review-rating { color: #ffcc33; white-space: nowrap; }
.review-text { color: var(--text-light); line-height: 1.6; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

.tripadvisor-widget { margin-top: 1rem; }

@media (max-width: 992px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-columns { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
