/* ============================================================
   1800 Vine St — Homepage Stylesheet v2
   ============================================================ */

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

html {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000;
  background: #fff;
}

body {
  overflow-x: hidden;
}

/* ============================================================
   NAV BAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 40px;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, transform 0.35s ease;
}

.site-nav.scrolled {
  background: #fff;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Logo swap on scroll */
.nav-logo--black { display: none !important; }
.nav-logo--white { display: block !important; }

.site-nav.scrolled .nav-logo--white { display: none !important; }
.site-nav.scrolled .nav-logo--black { display: block !important; }

/* Hamburger icon swap on scroll */
.nav-icon--black { display: none !important; }
.nav-icon--white { display: block !important; }

.site-nav.scrolled .nav-icon--white { display: none !important; }
.site-nav.scrolled .nav-icon--black { display: block !important; }

/* BOOK NOW on scroll: black border + text */
.site-nav.scrolled .nav-book-now {
  border-color: #000;
  color: #000;
}

.site-nav.scrolled .nav-book-now:hover {
  background: rgba(0,0,0,0.06);
}

/* Nav hide/show on scroll direction */
.site-nav {
  transition: background 0.3s ease, padding 0.3s ease, transform 0.35s ease;
}

.site-nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-book-now {
  grid-column: 1;
  justify-self: start;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.nav-book-now:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-logo-link {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 44px;
  display: block;
}

.nav-hamburger {
  grid-column: 3;
  justify-self: end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.nav-icon {
  height: 48px;
  width: auto;
  display: block;
  pointer-events: none;
}

/* ============================================================
   SLIDE DRAWER
   ============================================================ */
.slide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  max-width: 480px;
  min-width: 260px;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.slide-drawer.is-open {
  transform: translateX(0);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 28px;
  height: 100%;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 48px;
  padding: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}

.drawer-link {
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: right;
  display: block;
  line-height: 1;
  transition: opacity 0.15s ease;
}

.drawer-link:hover {
  opacity: 0.7;
}

/* SCRIM */
.menu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile drawer */
@media (max-width: 480px) {
  .slide-drawer {
    width: 100%;
    max-width: 100%;
  }

  .drawer-inner {
    align-items: flex-start;
  }

  .drawer-close {
    align-self: flex-end;
  }

  .drawer-nav {
    align-items: flex-start;
  }

  .drawer-link {
    text-align: left;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100dvh;
  position: relative;
  overflow: hidden;
  background-image: url('/assets/images/rooftop/1800-vine-rooftop-main-01.jpg');
  background-size: cover;
  -webkit-background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 58%;
  text-align: center;
  white-space: nowrap;
}

.hero-eyebrow {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 12px;
}

.hero-heading {
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  line-height: 1;
}

/* ============================================================
   GHOST BUTTON (shared)
   ============================================================ */
.ghost-btn {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 36px;
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.ghost-btn:hover {
  border-color: rgba(255, 255, 255, 1.0);
}

/* ============================================================
   VENUE GRID
   ============================================================ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.venue-tile {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.venue-tile--full {
  display: block;
  position: relative;
  height: 55vh;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}

.tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.venue-tile:hover .tile-bg {
  transform: scale(1.03);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.tile-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.tile-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 8px;
}

.tile-heading {
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-cards {
  background: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 10px;
  border: 1px solid #000;
  box-sizing: border-box;
}

.resource-card {
  border-right: 1px solid #000;
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.resource-card--last {
  border-right: none;
}

.resource-card:hover {
  background: #000;
  color: #fff;
}

.resource-card:hover .card-label,
.resource-cards a.resource-card:hover .card-label {
  color: #fff !important;
}

.resource-card:hover .card-tagline,
.resource-cards a.resource-card:hover .card-tagline {
  color: #fff !important;
}

.resource-card:hover .card-arrow-btn {
  background: #fff;
}

.resource-card:hover .card-arrow-btn .card-arrow {
  color: #000;
}

.card-top {
  display: flex;
  justify-content: flex-end;
}

.card-arrow-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-image: url('/assets/icons/circle-arrow-black.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.resource-card:hover .card-arrow-icon {
  background-image: url('/assets/icons/circle-arrow-white.svg');
}

/* card-arrow-btn removed — using Nucleo circle-arrow-right.svg img instead */

.card-bottom {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-family: 'Inter Tight', 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.card-tagline {
  font-family: 'Inter Tight', 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  transition: color 0.2s ease;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  padding: 56px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-heading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: white;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 2;
  transition: text-decoration 0.15s ease;
}

.footer-link:hover {
  opacity: 0.6;
  text-decoration: none;
}

.footer-address--link {
  display: block;
  color: white;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
  transition: opacity 0.15s;
}

.footer-address--link:hover {
  opacity: 0.6;
}

.footer-col--right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-logo {
  height: 48px;
  display: block;
  margin-bottom: 16px;
}

.footer-address {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: white;
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 100svh;
    height: 100svh;
    background-image: url('/assets/images/rooftop/1800-vine-rooftop-main-01.jpg');
    background-position: 25% center;
  }

  .site-nav {
    padding: 20px 24px;
  }

  .site-nav.scrolled {
    padding: 14px 24px;
  }

  .nav-logo {
    height: 36px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .tile-heading {
    font-size: 36px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .venue-tile {
    height: 40vh;
  }

  .venue-tile--full {
    height: 45vh;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .resource-card {
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .resource-card--last {
    border-bottom: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    gap: 32px;
  }

  .footer-col--right {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  /* Mobile nav: Book | Logo (centered) | Hamburger */
  .site-nav {
    grid-template-columns: 1fr auto 1fr;
    padding: 20px 20px;
  }

  .site-nav.scrolled {
    padding: 14px 20px;
  }

  /* Logo: visible, smaller, centered */
  .nav-logo-link {
    display: flex !important;
    grid-column: 2 !important;
    justify-self: center !important;
  }
  .nav-logo {
    height: 30px;
  }

  /* Hamburger: smaller, right-aligned */
  .nav-hamburger {
    grid-column: 3 !important;
    justify-self: end !important;
  }
  .nav-hamburger .nav-icon {
    height: 30px;
  }

  /* Book Now → "Book" on mobile via CSS */
  .nav-book-now {
    grid-column: 1 !important;
    justify-self: start !important;
    font-size: 0;
  }
  .nav-book-now::after {
    content: 'BOOK';
    font-size: 12px;
  }

  .resource-card {
    min-height: 200px;
  }

  .hero-content {
    white-space: normal;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-heading {
    font-size: 32px;
  }

  .tile-heading {
    font-size: 32px;
  }
}
