
:root {
  --hamburger-space: 100px; /* 🔧 tweak once, applies everywhere */
}

body {
  margin: 0;
  padding-top: var(--hamburger-space);
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}


/* Top bar */
.top-nav {
  position: relative;   /* 👈 NOT fixed */
  width: 100%;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: white;
}


/* Center the logo perfectly */
.logo-text {
    padding-top: 200px;
  font-family: 'Henny Penny', cursive;
  font-size: 150px;
  font-weight: normal;
  letter-spacing: -2px;
  margin: 0;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}


.logo-text:hover {
  transform: translate(-50%, -55%); /* moves UP slightly */
}

.logo-inner {
  display: inline-block;
  transition: transform 0.25s ease;
}

.logo-inner:hover {
  transform: translateY(-6px);
}


/* zoomi text */
.logo-text .zoomi {
  text-transform: lowercase;
  color: #3d3a3b;   
  letter-spacing: -3px;
}

/* ampersand */
.logo-text .amp {
  color: #7b1e2b;           /* burgundy, not ketchup */
  margin: 0 6px;
}

/* .Co */
.logo-text .co {
    color: #3d3a3b;  
  text-transform: none;     /* keep C uppercase */
}

/* Hamburger stays right */
.hamburger {
  font-size: 36px;        /* bigger icon */
  cursor: pointer;
  padding: 10px 14px;     /* bigger tap area */
  line-height: 1;
  border-radius: 10px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}



/* Dropdown menu */
.menu {
  position: fixed;
  top: 90px;       /* matches nav height */
  right: 20px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  min-width: 160px;
}

.menu a {
  display: block;
  padding: 10px 8px;
  text-decoration: none;
  color: black;
  border-radius: 8px;
}

.menu a:hover {
  background: #f2f2f2;
}

.hidden {
  display: none;
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.cover {
  padding-top: 180px; /* space for fixed nav */
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}



/* Cards */
.card, .addon, .summary {
  background: #f9f9f9;
  padding: 20px;
  margin-top: 20px;
  border-radius: 12px;
}

.addon {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price {
  font-size: 24px;
  font-weight: bold;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background: black;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
}

.booking-placeholder {
  background: #eee;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

/* Hide pricing until user clicks it in menu */
#pricing {
  display: none;
}

#pricing.active {
  display: block;
}



@media (max-width: 600px) {
  .top-nav {
    padding: 14px 16px;   /* less wasted space */
  }

  .hamburger {
    font-size: 42px;      /* even bigger on mobile */
    padding: 12px 16px;   /* comfy thumb target */
  }

  .logo {
    font-size: 24px;      /* prevents squishing */
  }
}




