:root {
  --primary-color: #d4af37; /* Gold */
  --secondary-color: #1a1a1a; /* Dark gray */
  --bg-color: #0d0d0d; /* Almost black */
  --text-color: #f2f2f2;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1000;
  transition: padding 0.3s;
}

header.sticky {
  padding: 10px 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.logo {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: bold;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

nav a:hover, nav a.active {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--bg-color);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.5s;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.8s;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeIn 1s forwards 1.2s;
}

/* Sections */
section {
  padding: 80px 5%;
  width: 100%;
}

section > div, section > form, section > iframe, section > header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  margin: 15px auto 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  border-color: var(--primary-color);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: #ccc;
  margin-bottom: 20px;
}

.service-card .price {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Forms */
.contact-form, .booking-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: left;
}

.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section p, .footer-section a {
  color: #aaa;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Extras */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  z-index: 100;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Menu */
.hamburger {
  display: none;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
}
.close-btn {
  display: none;
}

@media(max-width: 768px) {
  header { padding: 20px; }
  .hero-content h1 { font-size: 2.5rem; }
  
  .hamburger { display: block; }
  
  #nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2000;
  }
  
  #nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .close-btn {
    display: block;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 35px;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .close-btn:hover {
    transform: rotate(90deg);
  }
  
  #nav-menu ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    list-style: none;
  }
  
  #nav-menu ul li a {
    font-size: 22px;
  }
}
