/* ===== CSS Variables ===== */
:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --dark: #161616;
  --purple-dark: #1a0f2e;
  --purple: #2d1b4e;
  --orange: #e85d04;
  --orange-bright: #ff6b00;
  --orange-dark: #c44d00;
  --gold: #d4af37;
  --white: #ffffff;
  --gray-light: #e0e0e0;
  --gray: #a0a0a0;
  --gray-dark: #666666;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 8px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-book {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
}

.btn-book:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 93, 4, 0.5);
}

.btn-hero {
  background: var(--orange);
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 40px;
  box-shadow: 0 6px 30px rgba(232, 93, 4, 0.4);
}

.btn-hero:hover {
  background: var(--orange-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(232, 93, 4, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  margin-top: 8px;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.full-width {
  width: 100%;
}

/* ===== Top Bar ===== */
.top-bar {
  background: #050505;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
}

.top-left i {
  color: var(--orange);
  font-size: 0.9rem;
}

.top-left a:hover {
  color: var(--orange);
}

.top-right {
  display: flex;
  gap: 18px;
}

.top-right a {
  color: var(--gray);
  font-size: 1rem;
}

.top-right a:hover {
  color: var(--orange);
}

/* ===== Header / Nav ===== */
.main-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.logo:hover .logo-img {
  opacity: 0.9;
}
.footer-logo .logo-img {
  height: 42px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  color: var(--orange);
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-the {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--orange);
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center center / cover no-repeat;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.35;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
}

/* ===== Services ===== */
.services {
  background: var(--black);
  padding: 90px 0 100px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--orange);
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.title-line.left {
  margin-left: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.service-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--dark);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== About ===== */
.about {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 60%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-label,
.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--gray-light);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(10px);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--black-soft);
  padding: 90px 0 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 0.95rem;
  color: var(--white);
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1200 0%, var(--black) 50%, #1a0f2e 100%);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 93, 4, 0.15) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 36px;
}

/* ===== Contact ===== */
.contact {
  background: var(--black);
  padding: 90px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 20px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--gray-light);
  font-size: 1.05rem;
}

.contact-detail i {
  color: var(--orange);
  width: 20px;
  text-align: center;
}

.contact-detail a:hover {
  color: var(--orange);
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 50%;
  color: var(--gray-light);
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Form */
.contact-form {
  background: var(--dark);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p {
  color: var(--gray);
  margin-top: 12px;
  font-size: 0.95rem;
}

.footer-brand a:hover {
  color: var(--orange);
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: var(--gray);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 50%;
  color: var(--gray);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-dark);
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

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

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

  .about-content .section-label,
  .about-content .section-title {
    text-align: center;
  }

  .title-line.left {
    margin: 0 auto 50px;
  }

  .about-text {
    text-align: center;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .btn-book {
    padding: 10px 14px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .nav-container {
    height: 70px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-left {
    gap: 16px;
    font-size: 0.8rem;
  }

  .top-left span:first-child {
    display: none;
  }

  .hero {
    height: 75vh;
    min-height: 480px;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-content {
    padding-bottom: 60px;
  }

  .hero-tagline {
    letter-spacing: 2px;
  }

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

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

  .services {
    padding: 70px 0 80px;
  }

  .about,
  .gallery,
  .contact,
  .cta {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 6px 0;
  }

  .top-left span:last-child {
    font-size: 0.78rem;
  }

  .logo-name {
    font-size: 1.15rem;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

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

  .hero-tagline {
    font-size: 1.35rem;
    letter-spacing: 1.5px;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .contact-form {
    padding: 24px;
  }

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

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
