/* --------------------------------------------------------------
   GLOBAL RESETS + PERFORMANCE
-------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top center, #0a0a0a 0%, #020202 40%, #000000 70%);
  color: #ffffff;
  font-family: "Spartan", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* --------------------------------------------------------------
   COLOR VARIABLES
-------------------------------------------------------------- */
:root {
  --black: #000;
  --charcoal: #0a0a0a;
  --white: #fff;

  --gold-light: #f5e6c8;
  --gold-mid: #d8c08a;
  --gold-deep: #b89a5a;

  --gray: #bfbfbf;
  --gray-soft: #8f8f8f;

  --text-main: #ffffff;
  --text-muted: #cfcfcf;
  --border-gold: rgba(216, 192, 138, 0.45);
}

/* --------------------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------------------- */
h1, h2, .logo, .quote {
  font-family: "Mattings Regular", cursive;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
}

/* --------------------------------------------------------------
   LUXURY ANIMATIONS
-------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.gold-glow:hover {
  color: var(--gold-light) !important;
  text-shadow: 0 0 18px rgba(245, 230, 200, 0.65);
  transition: 0.35s ease;
}

/* --------------------------------------------------------------
   HEADER
-------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
  z-index: 100;
  border-bottom: 1px solid #222;
  gap: 20px;
}

.logo {
  margin-right: auto;
  font-size: 3rem;
  text-decoration: none !important;
  transition: 0.35s ease;
}

.logo:hover {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(245, 230, 200, 0.65);
  letter-spacing: 2px;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none !important;
  transition: 0.35s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(245, 230, 200, 0.65);
  letter-spacing: 1px;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------
   HERO (DEFAULT)
-------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 800px;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-banner img.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 600px;
}

.hero-overlay * {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

h1 {
  font-size: 6rem;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid) 40%, var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-mid);
  margin: 0 0 20px 0;
  position: relative;
}

h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: rgba(0, 0, 0, 0.55);
  filter: blur(6px);
}

/* --------------------------------------------------------------
   ABOUT PAGE — FIXED LEFT IMAGE + EXPANDING TEXT (FINAL)
-------------------------------------------------------------- */

.about-hero {
  display: flex;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
}

/* LEFT COLUMN — HERO IMAGE */
.about-hero-image {
  flex: 0 0 52%;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

.about-hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center 50%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.about-hero-image img.loaded {
    opacity: 1;
}

/* FLOATING TITLE */
.about-hero-title {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

/* RIGHT COLUMN — TEXT */
.about-hero-scroll {
  flex: 0 0 48%;
  display: flex;
  align-items: stretch;
}

.about-hero-content {
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 900px) {

  .about-hero {
    flex-direction: column;
    min-height: unset;
  }

  .about-hero-image {
    min-height: 60vh;
  }

  .about-hero-title {
    top: 45%;
    left: 6%;
  }

  .about-hero-scroll {
    width: 100%;
    display: block;
  }

  .about-hero-content {
    padding: 40px 20px;
  }
}

.about-photo-block {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  gap: 20px;
}

.about-photo {
  width: 50%;
  height: auto;
}

.about-signature {
  width: 140px;
  height: auto;
  margin-left: auto;
}

/* --------------------------------------------------------------
   SECTIONS
-------------------------------------------------------------- */
.section {
  padding: 100px 20px 80px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-inner h2 {
  font-size: 3.4rem;
  margin-bottom: 18px;
  color: var(--gold-light);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.section-subtitle {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 36px;
  color: var(--gray-soft);
}

/* --------------------------------------------------------------
   SIGNATURE
-------------------------------------------------------------- */
.signature {
  display: block;
  margin-left: 30px;
  margin-top: 10px;
  width: 120px;
}

/* --------------------------------------------------------------
   INDEX PAGE GRID (CARDS ONLY — RESTORED)
-------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  justify-content: center;
}

.grid a {
  text-decoration: none !important;
  color: inherit;
}

.card {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 16px;
  transition: 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  border-color: var(--gold-mid);
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(216, 192, 138, 0.25);
}

.card-image {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  height: 180px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --------------------------------------------------------------
   SIMPLE IMAGE GALLERY — SLIDE UP (FINAL FIXED)
-------------------------------------------------------------- */

.gallery-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px; /* FIX: actual radius instead of inherit */
  cursor: pointer;

  /* start hidden + lowered */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  border-radius: inherit; /* FIX: keeps corners rounded */
  pointer-events: none;   /* FIX: allows click-through to close lightbox */

  /* hover slide-up */
  transform: translateY(40px);
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --------------------------------------------------------------
   CONTACT
-------------------------------------------------------------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-list li {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------
   RATES
-------------------------------------------------------------- */

.rates-card-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.rates-card {
  width: 260px;
  text-align: center;
  padding: 22px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 16px;
  transition: 0.25s ease;
  text-decoration: none !important;   
  color: inherit !important;         
}

.rates-card:hover {
  border-color: var(--gold-mid);
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(216, 192, 138, 0.25);
}

.rates-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  text-decoration: none !important;  
}

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-soft);
  border-top: 1px solid #222;
}

/* --------------------------------------------------------------
   MOBILE MENU — SLIDE-OUT RIGHT PANEL
-------------------------------------------------------------- */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.08);
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gold-light);
  border-radius: 2px;
  transition: 0.35s ease;
}

/* Transform into X */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Slide-out panel */
.mobile-panel {
  position: fixed;
  top: 70px;
  right: 0;
  width: 260px;
  height: calc(100vh - 70px);
  background: rgba(0,0,0,0.92);
  border-left: 1px solid var(--border-gold);
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: -6px 0 22px rgba(216, 192, 138, 0.18);
}

.mobile-panel.active {
  transform: translateX(0);
}

.mobile-panel-inner {
  padding: 30px 20px;
  border-right: 3px solid var(--gold-mid);
}

.mobile-panel-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-panel-nav a {
  font-family: "Spartan", sans-serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(20px);
  animation: slideFade 0.6s ease forwards;
}

.mobile-panel.active .mobile-panel-nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(2) { animation-delay: 0.10s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(4) { animation-delay: 0.20s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(5) { animation-delay: 0.25s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(6) { animation-delay: 0.30s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(7) { animation-delay: 0.35s; }
.mobile-panel.active .mobile-panel-nav a:nth-child(8) { animation-delay: 0.40s; }

@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-panel-nav a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(245, 230, 200, 0.55);
}

/* Show hamburger only on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* --------------------------------------------------------------
   RESPONSIVE — TABLET
-------------------------------------------------------------- */
@media (min-width: 600px) and (max-width: 900px) {
  .hero {
    height: 75vh;
    min-height: 650px;
  }

  .hero-overlay {
    top: 50%;
    left: 8%;
    max-width: 70%;
  }

  h1 {
    font-size: 3.6rem;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-inner h2 {
    font-size: 2.6rem;
  }
}

/* --------------------------------------------------------------
   RESPONSIVE — MOBILE
-------------------------------------------------------------- */
@media (max-width: 600px) {

  .site-header {
    height: 60px;
    padding: 0 16px;
  }

  .logo {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }

  .hero {
    height: 70vh;
    min-height: 520px;
  }

  .hero-banner img {
    object-position: center 25%;
  }

  .hero-overlay {
    top: 39%;
    left: 5%;
    max-width: 90%;
  }

  .hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    -webkit-text-stroke: 1px var(--gold-mid);
  }

  .section {
    padding: 60px 16px 50px;
  }

  .section-inner {
    padding: 0 10px;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 14px;
    border-radius: 14px;
  }

  .card-image {
    height: 160px;
  }

  .card h3 {
    font-size: 1.1rem;
    margin-top: 12px;
  }

  .rates-card {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
  }

  .rates-card-wrap {
    margin-top: 20px;
  }


  .contact-list li {
    padding: 8px 0;
    font-size: 1rem;
  }

  .site-footer {
    padding: 30px 10px;
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------------------
   CONTACT ICONS — SLIDE UP ANIMATION
-------------------------------------------------------------- */

.contact-icons {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.contact-icon {
  font-size: 3em;
  color: var(--gold-light);
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px);
  animation: contactSlideUp 0.8s ease forwards;
  transition: 0.3s ease;
}

.contact-icon:nth-child(1) { animation-delay: 0.15s; }
.contact-icon:nth-child(2) { animation-delay: 0.30s; }
.contact-icon:nth-child(3) { animation-delay: 0.45s; }

@keyframes contactSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-icon:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(245,230,200,0.55);
  transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-icons {
    gap: 30px;
  }

  .contact-icon {
    font-size: 2.4em;
  }
}

/* --------------------------------------------------------------
   LIGHTBOX (FULLSCREEN IMAGE VIEWER)
-------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain; /* <-- keeps image centered */
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: 0.3s ease;

  pointer-events: none;
}