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

/* Root Variables */
:root {
  --dark-bg: #0a0a0a;
  --dark-overlay: rgba(0, 0, 0, 0.6);
  --gold: #d5a94b;
  --gold-light: #ead28a;
  --pink-neon: #ff528e;
  --text-light: #f5f2eb;
  --max-width: 1200px;
}

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

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
}

.navbar .logo span {
  font-size: 0.7rem;
  display: block;
  letter-spacing: 3px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
  width: 100%;
}

.navbar nav a.active {
  color: var(--gold-light);
}

.btn-book {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-book:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  width: 25px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.4rem;
  color: var(--gold-light);
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
  width: 100%;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 4rem;
}

.hero .content {
  flex: 1 1 50%;
  padding: 2rem;
}

.hero .content h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--gold-light);
}

.hero .content h1 .underline {
  position: relative;
  display: inline-block;
}

.hero .content h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: var(--pink-neon);
  border-radius: 2px;
}

.hero .content p {
  max-width: 480px;
  margin: 1rem 0 2rem;
  color: #d8cfae;
}

.hero .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-service {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-service:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.hero .image {
  flex: 1 1 50%;
  height: 70vh;
  position: relative;
}

.hero .image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Glow Section */
.glow-section {
  text-align: center;
  padding: 4rem 0 2rem;
  position: relative;
}

.glow-section .neon-text {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: var(--pink-neon);
  text-shadow: 0 0 6px rgba(255, 82, 142, 0.6), 0 0 12px rgba(255, 82, 142, 0.5), 0 0 20px rgba(255, 82, 142, 0.4);
  margin-bottom: 0.5rem;
}

.glow-section p.tagline {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

/* Premium Services Section */
.services-overview {
  padding: 2rem 0 5rem;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--gold-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .card-content {
  padding: 1.2rem;
}

.service-card .card-content h3 {
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.service-card .card-content p {
  font-size: 0.9rem;
  color: #d8cfae;
  margin-bottom: 1rem;
}

.service-card .card-content a {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card .card-content a:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* Sections for Inner Pages */
.page-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-overlay);
  backdrop-filter: blur(2px);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  color: var(--gold-light);
  text-align: center;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.section-content {
  padding: 4rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-content h2 {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.section-content ul {
  list-style: none;
  padding-left: 0;
}

.section-content ul li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
  color: #d8cfae;
}

.section-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* About & Contact Forms */
.about-section, .contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section form input,
.contact-section form textarea {
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  outline: none;
}

.contact-section form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-section form button {
  align-self: flex-start;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  color: var(--gold);
  background: transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.contact-section form button:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* Footer */
footer {
  background: rgba(0,0,0,0.7);
  padding: 2rem 0;
  text-align: center;
  color: #b8aa86;
  font-size: 0.8rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .navbar nav {
    display: none;
  }
  .navbar .btn-book {
    display: none;
  }
  .menu-icon {
    display: flex;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero .image {
    width: 100%;
    height: 50vh;
    margin-top: 2rem;
  }
  .hero .content h1 {
    font-size: 2.5rem;
  }
  .glow-section .neon-text {
    font-size: 2rem;
  }
  .services-overview h2 {
    font-size: 2rem;
  }
}