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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f7f3ef;
    color: #333;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.5rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo {
    font-size: 1.7rem;
    color: #fff;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.open-status {
    color: #90ee90;
    font-weight: bold;
    margin-left: 1rem;
    font-size: 0.9rem;
}

.closed {
    color: #ff6b6b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.nav-links li a:hover {
    background-color: #7c4b28;
    border-radius: 5px;
    color: white;
}

.nav-link.active {
    color: #c49b63; /* gold-ish highlight color */
    font-weight: bold;
    border-bottom: 2px solid #c49b63;
  }  

.btn-order {
    background-color: #f4d19b;
    color: #3e2f23;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
}

.btn-order:hover {
    background-color: #e3c088;
}

.call-btn {
    margin-left: 1rem;
    color: #f4d19b;
    text-decoration: none;
    font-weight: bold;
}

.call-btn:hover {
    color: white;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

.lang-switcher {
    color: white;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.lang-btn {
    color: #f4d19b;
    text-decoration: none;
    margin: 0 4px;
    font-weight: bold;
}

.lang-btn:hover {
    color: white;
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Optional overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    padding: 0.75rem 1.5rem;
    background-color: #7c4b28;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #5a361c;
}

.single-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: rotate(45deg) translateY(10px);
        opacity: 1;
    }
}
.site-footer {
    background-color: #3e2f23;
    color: #fefefe;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-column h4,
.footer-column h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    color: #ddd;
    line-height: 1.6;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #a0744f;
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    font-size: 1.25rem;
    color: #fefefe;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #a0744f;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #bbb;
    border-top: 1px solid #5e4a3f;
    margin-top: 2rem;
}

/* ================================
   TABLET NAVIGATION (SAFE)
   ================================ */
@media (max-width: 1024px) {

  header {
    padding: 0.5rem 1.2rem;
  }

  .logo {
    font-size: 1.45rem;
  }

  .open-status {
    font-size: 0.8rem;
    margin-left: 0.6rem;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links li a {
    font-size: 0.95rem;
    padding: 0.35rem 0.5rem;
  }

  .btn-order {
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
  }

  .call-btn {
    font-size: 0.9rem;
    margin-left: 0.6rem;
  }

  .lang-switcher {
    font-size: 0.85rem;
    margin-left: 0.6rem;
  }
}

/* ================================
   MOBILE NAVIGATION FIX
   ================================ */
@media (max-width: 768px) {

  /* Header tighter */
  header {
    padding: 0.4rem 1rem;
  }

  .navbar {
    align-items: center;
  }

  /* Logo smaller */
  .logo {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  /* Open / closed status below logo */
  .open-status {
    display: block;
    font-size: 0.75rem;
    margin-left: 0;
    margin-top: 0.2rem;
  }

  /* Hide language switcher from top bar */
  .lang-switcher {
    display: none;
  }

  /* Call button smaller */
  .call-btn {
    font-size: 0.85rem;
    margin-left: 0.5rem;
  }

  /* Hamburger tighter */
  .hamburger span {
    width: 22px;
    height: 2px;
  }

  /* Dropdown menu */
  .nav-links {
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 0;
    gap: 0.3rem;
    align-items: center;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    font-size: 0.95rem;
    padding: 0.6rem 0;
    width: 100%;
  }

  /* Order button inside menu */
  .btn-order {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .logo {
    font-size: 1.15rem;
  }

  .open-status {
    font-size: 0.7rem;
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .btn-order {
    font-size: 0.85rem;
  }
}
