@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-bg-light: #151515;
  --color-bg-glass: rgba(21, 21, 21, 0.7);
  --color-border: #333333;
  --color-primary: #d4af37;
  /* Gold */
  --color-primary-hover: #f1c40f;
  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;

  --transition: all 0.3s ease-in-out;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  background: transparent;
  border: none;
  transition: var(--transition);
}

/* Glassmorphism utility */
.glass {
  background: var(--color-bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gold Gradient text */
.text-gold {
  background: linear-gradient(45deg, #d4af37, #f1c40f, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Premium Buttons */
.btn-primary {
  background: var(--color-primary);
  color: #000;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #000;
}

/* Section styling */
section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar-transparent {
  background: transparent !important;
  border-bottom: 1px solid transparent;
  box-shadow: none !important;
}

.navbar-solid {
  background: rgba(25, 25, 25, 0.92);
  /* 🔥 lighter black */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: block;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link-active::after {
  width: 100%;
}

.nav-link-active {
  color: var(--color-primary) !important;
}

.nav-book-btn {
  padding: 9px 22px !important;
  font-size: 0.88rem !important;
}

.nav-toggle {
  display: none;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 5% 20px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu-open {
  max-height: 500px;
  padding: 10px 5% 25px;
}

.mobile-link {
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.mobile-link:hover,
.mobile-link-active {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.video-background iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--color-text-muted);
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.gallery-columns {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-portrait {
    height: 450px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .gallery-columns {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .gallery-columns {
    column-count: 1;
  }
}

/* Portfolio & Video Grid */
.portfolio-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item,
.video-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-item:hover,
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4) !important;
}

.portfolio-item img,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img,
.video-card:hover img {
  transform: scale(1.06);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

/* Forms */
input,
select,
textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  borderRadius: 10px;
  fontSize: 1rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select option {
  background-color: #1a1a1a;
  color: white;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

footer {
  background: var(--color-bg-light);
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MOBILE HERO FINAL
   - 80px gap below navbar
   - title between navbar and video
   - caption + buttons on video
   - desktop unchanged
========================================= */
@media (max-width: 768px) {

  .navbar,
  .navbar-transparent,
  .navbar-solid {
    background: rgba(25, 25, 25, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }

  .hero-section {
    position: relative;
    width: 100%;
    margin-top: 96px !important;
    margin-bottom: 34px !important;
    padding: 0 0 100px 0 !important;
    height: auto !important;
    min-height: unset !important;
    background: #000;
    overflow: visible;
    display: block;
    max-width: 100% !important;
  }

  .hero-mobile-title {
    display: block;
    text-align: center;
    background: #000;
    padding: 18px 16px 18px;
    /* title moved down */
    position: relative;
    z-index: 4;
  }

  .hero-mobile-title h1 {
    font-size: 2.05rem;
    line-height: 1.02;
    margin: 0;
  }

  .video-background {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
    line-height: 0;
  }

  .hero-video {
    position: relative;
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: contain !important;
    object-position: center top !important;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.20) 38%,
        rgba(0, 0, 0, 0.62) 100%);
  }

  /* hide old big title on mobile */
  .hero-title {
    display: none !important;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    text-align: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .hero-subtitle {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    /* stays on video */
    font-size: 0.9rem !important;
    line-height: 1.3;
    letter-spacing: 0.2px;
    margin: 0;
    max-width: none;
    z-index: 3;
  }

  .hero-buttons {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 6px);
    /* 🔥 closer to video */
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    max-width: none;
    margin: 0;
    z-index: 4;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 16px !important;
    font-size: 0.98rem !important;
  }

  #about {
    margin-top: 150px !important;
    /* moves About below buttons */
    padding-top: 0 !important;
  }

}

/* desktop unchanged */
@media (min-width: 769px) {
  .hero-mobile-title {
    display: none;
  }
}