/* ================================================================
   AcQuA Catering - Single Page | The Glasshouses-inspired Design
   All black bg, white text, gold accents, photography-forward
   ================================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-dark: #b08a3a;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-dark: #333333;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION HEADING STYLE ===== */
.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.section-heading .thin {
  font-weight: 300;
}

.section-heading .bold {
  font-weight: 800;
}


/* ================================================================
   1. HERO - Full viewport video background
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  letter-spacing: 20px;
  color: var(--gold);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  line-height: 1;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.8vw, 20px);
  letter-spacing: 12px;
  color: var(--gold);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

/* Scroll-down arrow */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.scroll-arrow:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}


/* ================================================================
   2. STICKY NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  pointer-events: auto;
}

.navbar.visible {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: fill 0.3s;
}

.nav-social a:hover svg {
  fill: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}

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

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

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


/* ================================================================
   3. EVENT CATEGORIES - 4 tall columns
   ================================================================ */
.events {
  width: 100%;
}

.events-grid {
  display: flex;
  width: 100%;
  min-height: 70vh;
}

.event-col {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
  overflow: hidden;
  cursor: pointer;
}

.event-col .event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.5s;
}

.event-col:hover .event-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Zoom on hover via pseudo-element to avoid layout shift */
.event-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.event-col:hover::before {
  transform: scale(1.08);
}

.event-label {
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}


/* ================================================================
   3b. MENUS
   ================================================================ */
.menus {
  padding: 120px 8% 100px;
  background: #0a0a0a;
}

.menus-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.menus .section-heading {
  text-align: center;
}

.menus-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.menus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.menu-card {
  text-align: center;
}

.menu-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.1);
  filter: brightness(1);
}

.menu-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.menu-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.menus-cta {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .menus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .menus-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 50px;
  }
}


.menu-card {
  cursor: pointer;
}

.menu-card-link {
  display: inline-block;
  margin-top: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.menu-card:hover .menu-card-link {
  opacity: 0.7;
}

/* Menu Modal */
.menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.menu-modal.open {
  display: flex;
}

.menu-modal-content {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  width: 95%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 20px 30px 30px;
  position: relative;
}

.menu-pdf-frame {
  width: 100%;
  flex: 1;
  border: none;
  background: #222;
  margin-bottom: 20px;
}

.menu-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.menu-modal-close:hover {
  color: var(--gold);
}

.menu-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-section {
  margin-bottom: 30px;
}

.menu-section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}

.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.5px;
}

.menu-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
  font-style: italic;
  margin: 30px 0;
  letter-spacing: 0.5px;
}

.menu-cta {
  display: inline-block;
  margin-top: 10px;
}

.menu-modal-body {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Scrollbar for modal */
.menu-modal-content::-webkit-scrollbar {
  width: 4px;
}

.menu-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.menu-modal-content::-webkit-scrollbar-thumb {
  background: var(--gray-dark);
  border-radius: 2px;
}

/* ================================================================
   4. MEET THE VENUE
   ================================================================ */
.venue {
  padding: 120px 8% 100px;
  background: var(--black);
}

.venue-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.venue-text {
  margin-bottom: 80px;
}

.venue-text .section-heading {
  text-align: left;
}

.venue-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.9;
  color: var(--gray-light);
  max-width: 800px;
}

.venue-stats {
  display: flex;
  gap: 80px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
}


/* ================================================================
   5. VIRTUAL TOUR
   ================================================================ */
.virtual-tour {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vt-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.vt-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vt-frame {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 60px 100px;
}

.vt-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.vt-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 4px;
  font-style: italic;
}


/* ================================================================
   6. THE LOOKBOOK - Masonry photo grid
   ================================================================ */
.lookbook {
  padding: 120px 5% 100px;
  background: var(--black);
}

.lookbook-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lookbook .section-heading {
  text-align: left;
  padding-left: 3%;
}

.lookbook-grid {
  display: flex;
  gap: 12px;
}

.lookbook-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lookbook-img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s;
  filter: brightness(0.85);
}

.lookbook-img:hover {
  transform: scale(1.02);
  filter: brightness(1);
}


/* ================================================================
   INSTAGRAM FEED
   ================================================================ */
.instagram-feed {
  padding: 120px 5% 100px;
  background: #0a0a0a;
}

.instagram-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.instagram-feed .section-heading {
  text-align: center;
}

.instagram-intro {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.instagram-cta {
  margin-top: 40px;
}


/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 20px;
  z-index: 2001;
  transition: color 0.3s;
}

.lightbox-arrow:hover {
  color: var(--gold);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}


/* ================================================================
   7. INQUIRE / CONTACT
   ================================================================ */
.inquire {
  padding: 120px 8% 100px;
  background: var(--black);
}

.inquire-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.inquire .section-heading {
  text-align: center;
}

.inquire-form {
  margin-bottom: 60px;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 0.5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 1px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Date input styling */
.form-group input[type="date"] {
  color: var(--gray);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
}

.btn-submit {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 50px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--black);
}

.inquire-info {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inquire-info p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.inquire-info a {
  color: var(--gray);
  transition: color 0.3s;
}

.inquire-info a:hover {
  color: var(--gold);
}


/* ================================================================
   8. FOOTER
   ================================================================ */
.footer {
  padding: 60px 5% 40px;
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--gray);
  transition: fill 0.3s;
}

.footer-social a:hover svg {
  fill: var(--gold);
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
}


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

/* Tablet */
@media (max-width: 1024px) {
  .events-grid {
    flex-wrap: wrap;
  }

  .event-col {
    flex: 1 1 50%;
    min-height: 50vh;
  }

  .venue-stats {
    gap: 40px;
  }

  .vt-frame {
    padding: 40px 60px;
  }

  .lookbook-grid {
    gap: 8px;
  }

  .lookbook-col {
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
  }

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

  .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Events */
  .events-grid {
    flex-direction: column;
  }

  .event-col {
    flex: none;
    min-height: 40vh;
  }

  /* Venue */
  .venue {
    padding: 80px 6% 60px;
  }

  .venue-stats {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .stat {
    text-align: left;
  }

  /* Virtual tour */
  .vt-bg {
    background-attachment: scroll;
  }

  .vt-frame {
    padding: 30px 30px;
    margin: 0 20px;
  }

  /* Lookbook */
  .lookbook {
    padding: 80px 4% 60px;
  }

  .lookbook-grid {
    flex-direction: column;
  }

  /* Inquire */
  .inquire {
    padding: 80px 6% 60px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    margin-bottom: 16px;
  }

  /* Lightbox arrows */
  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  .lightbox-arrow {
    font-size: 24px;
    padding: 10px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 10px;
  }

  .hero-subtitle {
    letter-spacing: 6px;
  }

  .section-heading {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .nav-logo {
    font-size: 22px;
    letter-spacing: 4px;
  }
}
