/* Variables for Theme */
:root {
  --bg-color: #050505;
  --bg-color-lighter: #0f0f0f;
  --bg-color-darker: #000000;
  --primary-gold: #cfaa67; /* #D4AF37 alternatively */
  --primary-gold-dim: rgba(207, 170, 103, 0.2);
  --primary-gold-bright: #ebd599;
  --text-main: #f0f0f0;
  --text-muted: #999999;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  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: 600;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.bg-darker {
  background-color: var(--bg-color-darker);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--bg-color-darker);
  border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-gold);
  box-shadow: 0 0 20px var(--primary-gold-dim);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-nav {
  background-color: var(--primary-gold);
  color: var(--bg-color-darker) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-nav:hover {
  background-color: var(--primary-gold-bright) !important;
  color: var(--bg-color-darker) !important;
  box-shadow: 0 0 15px var(--primary-gold-dim);
}

/* Typography elements */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  height: 2px;
  width: 60px;
  background-color: var(--primary-gold);
  margin: 1.5rem auto;
}

.divider.left {
  margin: 1.5rem 0;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all var(--transition-fast);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 2px;
}

.logo span {
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a.active:not(.btn-nav) {
  color: var(--primary-gold);
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover:not(.btn-nav)::after,
.nav-links a.active:not(.btn-nav)::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.9) 100%);
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 1;
}

.scroll-indicator a {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.scroll-indicator a:hover {
  color: var(--primary-gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

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

.service-card {
  background-color: var(--bg-color-lighter);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(207, 170, 103, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
  pointer-events: none;
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-gold);
  z-index: -1;
  border-radius: 4px;
}

.about-list {
  margin-top: 2rem;
}

.about-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-main);
  font-size: 1.05rem;
}

.about-list i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

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

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  transform: translateY(20px);
  transition: transform var(--transition-slow);
}

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

/* Testimonials */
.testimonial-slider-container {
  overflow: hidden;
  position: relative;
  padding-bottom: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}

.stars {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.client-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.client-info span {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.slider-controls button {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-controls button:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* Booking Forms */
.booking-wrapper {
  background: var(--bg-color-lighter);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-gold-dim) 0%, transparent 70%);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-item i {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-item h5 {
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.info-item span {
  color: var(--text-muted);
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form .form-row {
  display: flex;
  gap: 1.5rem;
}

.booking-form .half {
  flex: 1;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-radius: 4px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--primary-gold);
}

.booking-form select option {
  background-color: var(--bg-color-lighter);
  color: var(--text-main);
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}

/* Footer */
.footer {
  background-color: var(--bg-color-darker);
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-col h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brand-col span {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary-gold);
  color: var(--bg-color-darker);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: var(--primary-gold);
}

.footer-col ul li span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-container {
  width: 100%;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-fast);
}

.map-overlay {
  position: absolute;
  margin: 0;
  color: var(--text-main);
  font-size: 0.9rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.map-container:hover .map-img {
  opacity: 0.3 !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .about-grid {
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color-darker);
    flex-direction: column;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .image-accent {
    display: none;
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
