/* ------------------------------------------------------
   GLOBAL RESET + BASE
------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f8f9fa;
  color: #1b1b1b;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  letter-spacing: 0.2px;
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ------------------------------------------------------
   SECTION BASE
------------------------------------------------------ */
section {
  scroll-margin-top: 90px;
  padding: clamp(1.4rem, 4vw, 2.4rem) clamp(0.8rem, 3vw, 1.6rem);
  max-width: 1200px;
  margin: 0 auto;
}

/* ------------------------------------------------------
   HEADERS (H2)
------------------------------------------------------ */
section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #003f87;
  margin-bottom: 1.5rem;
  position: relative;
}

section h2::before {
  content: "★";
  font-size: clamp(1rem, 2vw, 1.4rem);
  position: absolute;
  left: clamp(-18px, -2vw, -30px);
  top: 0;
  color: #007bff;
}

section h2::after {
  content: "";
  display: block;
  width: clamp(50px, 10vw, 90px);
  height: 4px;
  background: linear-gradient(to right, #003f87, #00a6ff);
  margin: 12px auto 0;
  border-radius: 5px;
}

/* ------------------------------------------------------
   SUBHEADERS (H3)
------------------------------------------------------ */
section h3 {
  color: #003f87;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 1rem 0 1rem;
  position: relative;
  padding-left: clamp(20px, 2vw, 30px);
}

section h3::before {
  content: "★";
  position: absolute;
  left: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  top: 0;
  color: #00a6ff;
}

/* ------------------------------------------------------
   PARAGRAPHS
------------------------------------------------------ */
section p {
  text-align: justify;
  margin-bottom: 1.1rem;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
}

/* ------------------------------------------------------
   HONDURAN BORDER
------------------------------------------------------ */
.textile-border {
  border: 6px solid transparent;
  border-image: repeating-linear-gradient(
      45deg,
      #0038A8,
      #0038A8 10px,
      #ffffff 10px,
      #ffffff 20px,
      #00a6ff 20px,
      #00a6ff 30px
    )
    12;
  border-radius: 12px;
}

/* ------------------------------------------------------
   HEADER + NAVIGATION
------------------------------------------------------ */
header {
  background: linear-gradient(to right, #003f87, #007bff);
  color: #fff;
  padding: clamp(0.6rem, 1.2vw, 1rem) 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease;
}

body.header-hidden header {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 clamp(0.8rem, 2vw, 1.6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.25s ease;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ------------------------------------------------------
   HAMBURGER MENU
------------------------------------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* ------------------------------------------------------
   MOBILE NAV
------------------------------------------------------ */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #003f87;
    flex-direction: column;
    padding: clamp(1rem, 4vw, 1.6rem) 0;
    gap: 1.2rem;
    display: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.nav-open nav ul {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------
   MENU GRID
------------------------------------------------------ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 30vw, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.menu-item {
  background: #fff;
  padding: clamp(1rem, 1.8vw, 1.3rem);
  border-radius: 12px;
  border-left: 6px solid #007bff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1rem);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-left-color: #003f87;
}

.price {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  color: #003f87;
}

/* Stack on tiny screens */
@media (max-width: 480px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------
   GALLERY
------------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 22vw, 260px), 1fr));
  gap: clamp(0.8rem, 2vw, 1.3rem);
}

.gallery-grid img {
  width: 100%;
  height: clamp(160px, 30vw, 260px);
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid #003f87;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: #007bff;
}

/* ------------------------------------------------------
   MAP
------------------------------------------------------ */
.map-container {
  margin-top: 1.4rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: clamp(240px, 45vw, 360px);
  border: none;
}

/* ------------------------------------------------------
   ICONS
------------------------------------------------------ */
#location p::before {
  content: "📍 ";
}

#hours p:nth-of-type(-n+2)::before {
  content: "🕒 ";
}

/* ------------------------------------------------------
   FOOTER
------------------------------------------------------ */
footer {
  margin-top: 3rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  background: linear-gradient(to right, #003f87, #002b5c);
  color: white;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.5px;
}
/* LOGO + TITLE AREA */
.logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: 65px;
  height: auto;
  object-fit: contain;
}

/* Shrink logo for small screens */
@media (max-width: 480px) {
  .header-logo {
    width: 48px;
  }
}




