/* ============================================
   Cloud 9 Catering — Luxury Black & Silver
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

/* ---------- Variables ---------- */
:root {
  --bg: #fefefe;
  --primary: #0a0a0a;
  --secondary: #b0b0b0;
  --accent: #d4d4d8;
  --platinum: #f2f2f4;
  --text-dark: #0f0f0f;
  --text-light: #e8e8ea;
  --champagne: #e5ddd0;
  --ff-heading: 'Space Grotesk', sans-serif;
  --ff-body: 'Sora', sans-serif;
  --ff-data: 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

/* ---------- Utility ---------- */
.container { max-width:1280px; margin:0 auto; padding:0 40px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 720px;
  padding: 0 24px;
}

.hero__logo {
  width: 340px;
  margin: 0 auto 40px;
}

.hero__headline {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__sub {
  font-family: var(--ff-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.hero__cta {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--secondary);
  color: var(--text-light);
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.hero__cta:hover {
  background: var(--text-light);
  color: var(--primary);
  border-color: var(--text-light);
}

.hero__email {
  display: block;
  margin-top: 32px;
  font-family: var(--ff-data);
  font-size: 13px;
  color: var(--secondary);
  letter-spacing: 1px;
}

/* Video play/pause button */
.hero__video-btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(10,10,10,0.5);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.hero__video-btn:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(10,10,10,0.7);
}

.hero__video-btn svg { width: 18px; height: 18px; }

/* ============================================
   ABOUT — "Our Vision"
   ============================================ */
.about {
  background: var(--primary);
  padding: 120px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__quote {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.4;
  border-left: 2px solid var(--secondary);
  padding-left: 32px;
}

.about__text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

.about__text p { margin-bottom: 20px; }

.about__label {
  font-family: var(--ff-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 32px;
}

/* ============================================
   SERVICES — Horizontal Scroll
   ============================================ */
.services {
  background: var(--platinum);
  padding: 100px 0;
  overflow: hidden;
}

.services__label {
  font-family: var(--ff-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 48px;
}

.services__track {
  display: flex;
  gap: 24px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.services__track::-webkit-scrollbar { display: none; }

.services__card {
  flex: 0 0 320px;
  background: var(--primary);
  padding: 48px 36px;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.services__card:hover { transform: translateY(-4px); }

.services__card-num {
  font-family: var(--ff-data);
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.services__card-title {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.services__card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.7;
}

/* ============================================
   MENU SHOWCASE
   ============================================ */
.menu-showcase {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-showcase__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-showcase__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
}

.menu-showcase__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-light);
}

.menu-showcase__title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.menu-showcase__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.menu-showcase__btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--secondary);
  color: var(--text-light);
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.menu-showcase__btn:hover {
  background: var(--text-light);
  color: var(--primary);
}

/* ============================================
   GALLERY — Bento Grid
   ============================================ */
.gallery {
  background: var(--primary);
  padding: 100px 0;
}

.gallery__label {
  font-family: var(--ff-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

/* Bento asymmetric layout */
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 1; }
.gallery__item:nth-child(3) { grid-column: span 1; }
.gallery__item:nth-child(4) { grid-column: span 1; }
.gallery__item:nth-child(5) { grid-column: span 1; }
.gallery__item:nth-child(6) { grid-column: span 2; }
.gallery__item:nth-child(7) { grid-column: span 1; }
.gallery__item:nth-child(8) { grid-column: span 1; }

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
  background: var(--primary);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(176,176,176,0.1);
  border-bottom: 1px solid rgba(176,176,176,0.1);
}

.pull-quote__text {
  font-family: var(--ff-heading);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--secondary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: 1px;
}

.pull-quote__text em {
  font-style: normal;
  color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--primary);
  padding: 120px 0;
}

.contact__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact__label {
  font-family: var(--ff-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 40px;
}

.contact__email {
  font-family: var(--ff-data);
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--secondary);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.contact__email:hover { color: var(--text-light); }

.contact__avail {
  font-size: 14px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.contact__btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--secondary);
  color: var(--text-light);
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.contact__btn:hover {
  background: var(--text-light);
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(176,176,176,0.1);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__logo { width: 160px; opacity: 0.7; }

.footer__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer__links a {
  font-size: 13px;
  color: var(--secondary);
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--text-light); }

.footer__copy {
  font-size: 12px;
  color: rgba(176,176,176,0.5);
  font-family: var(--ff-data);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px 240px;
  }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery__item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero__logo { width: 260px; }
  .services__card { flex: 0 0 280px; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
    gap: 4px;
    padding: 0 16px;
  }
  .gallery__item:nth-child(1) { grid-column: span 2; }
  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer__links { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__logo { width: 200px; }
  .hero__cta, .menu-showcase__btn, .contact__btn { padding: 14px 32px; font-size: 12px; }
  .about { padding: 80px 0; }
  .services { padding: 60px 0; }
  .gallery { padding: 60px 0; }
  .pull-quote { padding: 80px 0; }
  .contact { padding: 80px 0; }
}

/* ---------- SEO hidden div ---------- */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
