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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #fdfafa;
  --auburn: #120424;
  --dark: #120424;
  --gold: #b99e00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
.logo {
  font-family: "Montserrat", sans-serif;
}

body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: var(--dark);
  /* Inverted color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  z-index: 1000;
  padding: 0 20px;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  /* More padding for full width */
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.logo {
  color: #fff;
  /* Inverted logo color */
  font-weight: 700;
  font-size: 1.5rem;
}

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  /* Inverted link color */
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
    /* Above the menu */
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Slide out */
    width: 250px;
    height: 100vh;
    background: rgba(10, 11, 36, 0.95);
    /* Dark background */
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    right: 0;
    /* Slide in */
  }

  nav a {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #fff;
  }
}

.btn {
  background: #fff;
  /* Inverted button */
  color: var(--auburn);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s, background 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
}

.btn-light {
  background: #fff;
  color: var(--auburn);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url("assets/images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26, 10, 46, 0.9) 0%, rgba(26, 10, 46, 0.7) 50%, rgba(26, 10, 46, 0.4) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  /* 2-Column Layout */
  align-items: center;
  gap: 40px;
}

/* Left Column: Text */
.hero-text {
  flex: 1;
  color: #fff;
  text-align: left;
  animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-tagline h3 {
  font-size: 1.5rem;
  color: var(--gold);
  border-left: 4px solid var(--gold);
  padding-left: 15px;
}

/* Right Column: Glass Card */
.hero-card {
  flex: 0 0 450px;
  /* Fixed width for card */
  background: rgba(255, 255, 255, 0.08);
  /* More transparent */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  /* Deep shadow */
  padding: 35px;
  border-radius: 12px;
  color: #fff;
  animation: fadeInRight 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-features {
  list-style: none;
  margin: 20px 0;
}

.hero-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero-features li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 12px;
  font-weight: bold;
}

.hero-btn {
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, var(--gold), #cfaa48);
  color: var(--dark);
  font-weight: 700;
  border: none;
  margin-top: 15px;
  padding: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #cfaa48, var(--gold));
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Mobile Responsive Hero */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding-top: 80px;
    /* Space for fixed nav */
  }

  .hero-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-card {
    width: 100%;
    max-width: 500px;
  }

  .hero-tagline h3 {
    border-left: none;
    padding-left: 0;
  }
}

/* SECTIONS */
/* SECTIONS Common */
.section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 10px;
  color: var(--auburn);
  font-size: 2.2rem;
  /* line-height: 1.2; */
}

.alt {
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Title Divider */
.title-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.title-divider.text-center {
  justify-content: center;
}

.title-divider .line {
  height: 2px;
  width: 50px;
  background: var(--gold);
}

.title-divider .sub-title {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SPLIT LAYOUT */
.split-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* IMAGES */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.center-block {
  margin-left: auto;
  margin-right: auto;
}

#plans img {
  max-width: 60%;
  margin: 20px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
}

/* GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

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

.grid-3 img {
  width: 100%;
  border-radius: 8px;
  height: 250px;
  object-fit: cover;
}

/* PLAN CARDS */
.plan-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #eee;
}

.plan-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.plan-info {
  padding: 20px;
}

.plan-info h3 {
  color: var(--auburn);
  margin-bottom: 10px;
}

/* PRICE BOX */
.price-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s;
}

.price-box:hover {
  transform: translateY(-5px);
}

.price-header {
  background: var(--auburn);
  color: #fff;
  padding: 20px;
  font-size: 1.25rem;
  font-family: "Playfair Display", serif;
}

.price-body {
  padding: 30px;
}

.price-body h4 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-body p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* AMENITIES BOX */
.ami-box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border: 1px solid transparent;
}

.ami-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.ami-box i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.ami-box h3 {
  font-size: 1.1rem;
  color: var(--auburn);
}

/* CTA */
.cta {
  background: var(--auburn);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
}

/* ACCORDION (FAQ) */
.accordion-container {
  max-width: 800px;
  margin: auto;
}

details {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--auburn);
  position: relative;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

details[open] summary::after {
  content: "-";
}

.details-content {
  padding: 0 20px 20px 20px;
  border-top: 1px solid #eee;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .title-divider {
    justify-content: center;
  }
}

/* FOOTER */
.footer {
  background: #111;
  color: #888;
  padding: 50px 0 20px;
  font-size: 0.9rem;
}

.footer-disclaimer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-disclaimer p {
  margin-bottom: 30px;
  line-height: 1.5;
}

.footer hr {
  border-color: #333;
  margin: 20px 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}


/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  margin: auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.4s ease-out;
  text-align: center;
}

.close-modal {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--auburn);
}

.modal h2 {
  color: var(--auburn);
  margin-bottom: 10px;
}

.modal p {
  color: #666;
  margin-bottom: 20px;
}

/* Floating Labels Form */
.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  background: #f9f9f9;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
  background: transparent;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background: #fff;
  padding: 0 5px;
  color: var(--gold);
  font-weight: 600;
}