/* ============================================================
   Little Ollie's Aspen — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #000; color: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s, padding 0.4s;
}
#navbar.scrolled { background: rgba(0,0,0,0.96); padding: 7px 40px; }

.nav-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo-shield {
  background: #fff;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  padding: 10px 12px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-shield img { height: 44px; width: auto; }
.nav-brand-text { font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: capitalize; color: #fff; white-space: nowrap;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: #c9a96e; transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #c9a96e; }

.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: none; border: none; cursor: pointer; z-index: 1100;
}
.hamburger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 1050;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 38px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 20px; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: #fff; transition: color 0.2s; }
.mobile-menu a:hover { color: #c9a96e; }

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  height: 240px; background: #0d0d0d;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 38px; border-bottom: 1px solid #1a1a1a;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
}
.page-hero .hero-rule { width: 38px; height: 1px; background: #c9a96e; margin-top: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; padding: 14px 34px;
  font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.72); color: #fff; background: transparent;
  cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s; white-space: nowrap;
}
.btn:hover { background: #c9a96e; border-color: #c9a96e; color: #000; }
.btn-gold { border-color: #c9a96e; color: #c9a96e; }
.btn-gold:hover { background: #c9a96e; color: #000; }

/* ============================================================
   HOME — HERO SLIDESHOW
   ============================================================ */
.slideshow-wrapper { position: relative; width: 100%; height: 100vh; min-height: 620px; overflow: hidden; }
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out; z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }
.slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.40); }

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px; pointer-events: none;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(68px, 11vw, 155px); font-weight: 300;
  letter-spacing: 0.07em; line-height: 1.0; color: #fff; margin-bottom: 18px;
}
.hero-subtitle { font-size: clamp(10px, 1.4vw, 14px); font-weight: 400; letter-spacing: 0.44em; text-transform: uppercase; color: #fff; margin-bottom: 13px; }
.hero-info { font-size: 11px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 38px; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; pointer-events: all; }
.hero-buttons .btn { min-width: 185px; }

.slideshow-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 10px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.28); border: 1px solid rgba(255,255,255,0.55); cursor: pointer; transition: background 0.3s; }
.dot.active { background: #fff; }

/* ============================================================
   HOME — ABOUT SECTION
   ============================================================ */
#about {
  background: #0a0a0a; padding: 100px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; border-bottom: 1px solid #161616;
}
.about-label { font-size: 10px; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: #c9a96e; margin-bottom: 20px; }
.about-rule { width: 38px; height: 1px; background: #c9a96e; margin: 0 auto 38px; }
.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.2vw, 23px); font-weight: 300; font-style: italic;
  line-height: 1.9; letter-spacing: 0.02em; color: #c8c8c8; max-width: 840px;
}

/* ============================================================
   HOME — INFO BAR
   ============================================================ */
.info-bar {
  background: #070707; padding: 72px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  text-align: center; border-top: 1px solid #141414; border-bottom: 1px solid #141414;
}
.info-bar-item h3 { font-size: 10px; font-weight: 600; letter-spacing: 0.36em; text-transform: uppercase; color: #c9a96e; margin-bottom: 16px; }
.info-bar-item p, .info-bar-item a { font-size: 12px; font-weight: 300; letter-spacing: 0.12em; line-height: 2.1; color: #aaa; text-transform: uppercase; display: block; }
.info-bar-item a:hover { color: #c9a96e; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #050505; padding: 56px 40px 32px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo-shield {
  background: #fff;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  padding: 11px 13px; display: inline-flex; align-items: center; justify-content: center;
}
.footer-logo-shield img { height: 42px; width: auto; }
.footer-brand { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #fff; }
.footer-socials { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; background: #141414; border: 1px solid #222;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-socials a:hover { background: #c9a96e; border-color: #c9a96e; color: #000; }
.footer-socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-address { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.footer-copy { font-size: 10px; letter-spacing: 0.1em; color: #fff; padding-top: 18px; border-top: 1px solid #333; width: 100%; max-width: 600px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: #000; padding: 50px 0 80px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 6px; }
.gallery-item { overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease, filter 0.4s ease; filter: brightness(0.88); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.0); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 86vh; object-fit: contain; box-shadow: 0 0 80px rgba(0,0,0,0.9); }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 38px; color: #fff; cursor: pointer; background: none; border: none; opacity: 0.7; line-height: 1; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 22px; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}

/* ============================================================
   RESPONSIVE NAVIGATION (MOBILE MENU)
   ============================================================ */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}