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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #050607;
  color: #e6e6e6;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* Serif Typography */
h1, h2, h3, .brand-logo, .nav-left, .section-badge {
  font-family: 'Cinzel', serif;
}

/* Navbar Style */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background: linear-gradient(to bottom, rgba(5,6,7,0.9), rgba(5,6,7,0));
  z-index: 1000;
}

.nav-left {
  color: #a88b48;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo-symbol {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #ffffff;
  font-weight: 700;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: #a88b48;
}

/* Scroll Container & Canvas */
#scroll-container {
  height: 600vh;
  position: relative;
}

#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

/* Hero Overlay Dynamic Text */
.hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  text-align: center;
}

.text-step {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  max-width: 800px;
  padding: 0 20px;
}

.text-step.active {
  opacity: 1;
  transform: translateY(0);
}

.text-step h1 {
  font-size: 3.8rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.text-step p {
  font-size: 1rem;
  color: #aaa;
  margin-top: 15px;
  letter-spacing: 1px;
}

.scroll-tag {
  color: #a88b48 !important;
  font-size: 0.75rem !important;
  letter-spacing: 3px !important;
  margin-top: 25px !important;
}

.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #a88b48;
  margin-bottom: 10px;
}

.big-quote span {
  color: #a88b48;
  font-style: italic;
}

/* Feature Showcase Section */
.content-section {
  position: relative;
  z-index: 20;
  background-color: #080a0b;
  padding: 120px 8%;
  text-align: center;
}

.section-badge {
  color: #a88b48;
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.content-section h2 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-desc {
  color: #888;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #0d0f11;
  border: 1px solid #1a1d20;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #a88b48;
}

.card-img-holder {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.feature-card:hover .card-img-holder img {
  transform: scale(1.08);
}

.card-info {
  padding: 20px;
  text-align: left;
}

.card-info span {
  font-size: 0.65rem;
  color: #a88b48;
  letter-spacing: 2px;
}

.card-info h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 5px;
}

/* Reserve Section */
.reserve-section {
  position: relative;
  z-index: 20;
  background-color: #050607;
  padding: 120px 8%;
  text-align: center;
  border-top: 1px solid #14171a;
}

.reserve-section h2 {
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.reserve-section p {
  color: #888;
  max-width: 550px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 36px;
  border: 1px solid #a88b48;
  color: #a88b48;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.reserve-btn:hover {
  background: #a88b48;
  color: #000;
}