:root {
  --cream: #fff7d7;
  --accent: #f57c00;
  --blue: #00376d;
  --gold: #ffd700;
  --text: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}


/* ===== NavBar ===== */
.site-header {
  background: #00376d;
  color: #fff;
  height: 125px;
  max-width: auto;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 13px 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
  width: 100%;
}

/* Brand */
.brand-wrapper {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: white;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  animation: slideHorizontal 18s linear infinite;
}

@keyframes slideHorizontal {
  0% { left: 20%; }
  100% { left: 50%; }
}

.small-icon {
  font-size: 12x;
  display: inline-block;
  vertical-align: middle;
  width: 2em;
  text-align: center;
}

/* Logo */
.logo img {
  height: 90px;
  width: auto;
  max-height: 90px;
  
}

/* ===== Navigation ===== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav ul li { 

  position: relative;
 }

.main-nav ul li a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.main-nav ul li a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  width: 100%;
  height: 100%;
  background: #ec7e00;
  border-radius: 8px;
  z-index: -1;
  transition: transform 0.3s ease-in-out;
}

.main-nav ul li a:hover::before {
  transform: translate(-50%, -50%) scaleX(1);
}

.main-nav ul li a:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

/* Active nav item */
.main-nav ul li a.active {
  color: #ffffff;
}

.main-nav ul li a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: #ec7e00;
  border-radius: 2px;
}




/* ===== Search & Buttons ===== */
.search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search-input {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  flex: 1;
  max-width: 300px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border: none;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: transparent;   /* transparent */
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(255,255,255,0.15); /* subtle hover circle */
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* mobail responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  /* Keep brand + search + hamburger inline */
  .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* ==== Hide brand-wrapper only in mobile ==== */
  .brand-wrapper {
    display: none;   /* hide scrolling brand on mobile */
  }

  .logo img { max-height: 60px; }

  .search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .search-input {
    max-width: 85%;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    z-index: 1100;
  }

  /* --- Mobile menu hidden left --- */
  .main-nav {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: rgba(134, 135, 135, 0.95);
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    backdrop-filter: blur(6px);
  }

  .main-nav.open { left: 0; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 18px;
    margin: 0;
  }

  .main-nav ul li a {
    font-size: 16px;
    width: 100%;
    display: block;
    padding: 10px;
    color: #fff;
  }

  .auth-buttons { justify-content: center; width: 100%; }
}




/* Floating round button */
.scroll-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f65414, #e8a362);
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 9999;
}

.scroll-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.scroll-toggle.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Small screens */
@media (max-width: 480px) {
  .scroll-toggle {
    width: 52px;
    height: 52px;
  }
  .scroll-toggle svg {
    width: 22px;
    height: 22px;
  }
}



/* Footer Base */
.footer {
  background: linear-gradient(135deg, #b24700, #8a3600);
  color: #f5f5f5;
  padding: 80px 50px 40px; /* Slightly reduced for balance */
  font-family: "Segoe UI", Roboto, Arial, sans-serif,;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px; /* Adjusted gap */
  max-width: 1300px;
  margin: auto;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 25px;
}

/* Footer Section */
.footer-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Gap between items */
  min-width: 200px;
  text-align: left;
}

/* Logos */
.footer-logo-left {
  max-width: 60px;
  height: 80px;
  margin-left: 55px;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  margin-top: 8px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2) rotate(5deg);
  background: #ffd580;
}

/* Section Titles */
.footer-title,
.footer-subtitle,
.map-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffd580;
  letter-spacing: 0.5px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffd580;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #ffd580;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

/* Contact Items */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contact-item a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffd580;
}

/* Opening Hours + Map Section */
.footer-section.open-map {
  gap: 10px; /* Gap between open hours and map */
}

/* Open Hours */
.footer-open-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 6px 0;
  color: #fff; /* White text */
  font-weight: 500;
  font-size: 14px; /* Smaller font */
}

.footer-open-hours li {
  margin-bottom: 3px;
}

/* Map */
.footer-section iframe {
  width: 100%;
  height: 100px; /* Smaller map */
  border: none;
  border-radius: 10px;
}

/* Footer Copy */
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.footer-copy {
  font-size: 14px;
  color: #ccc;
  text-align: center;
}

.footer-copy strong {
  color: #ffd580;
}



/* Responsive for Mobile */
@media (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-wrap: wrap;             /* wrap sections to next line */
    justify-content: center;     /* center horizontally */
    gap: 20px;
    text-align: center;
  }

  .footer-section, 
  .footer-section.open-map {
    flex: 1 1 calc(50% - 20px);  /* two items per row */
    min-width: 160px;            /* same width blocks */
    text-align: center;
  }

  /* Contact Us section special polish */
  .footer-section.contact-us {
    flex: 1 1 100%;              /* full row in mobile */
    max-width: 100%;
    text-align: center;
  }

  .footer-section.contact-us .contact-item {
    justify-content: center;     /* icons + text center */
    gap: 10px;
  }

  .footer-section.contact-us .contact-item img {
    width: 26px;
    height: 26px;
  }

  .footer-section.contact-us .contact-item a {
    font-size: 14px;
    display: inline-block;
  }

  /* Left small logo */
  .footer-logo-left {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 55px;
    height: auto;
  }

  /* Main logo */
  .footer-logo {
    display: block;
    margin: 0 auto 12px auto;
    max-width: 130px;
    height: auto;
  }

  .footer-social {
    justify-content: center;
    margin-top: 8px;
  }

  .footer-links ul li {
    margin-bottom: 6px;
  }

  .footer-open-hours {
    font-size: 13px;
    margin-top: 5px;
  }

  .footer-section iframe {
    height: 100px;
    border-radius: 8px;
  }
}