/* css/style.css - Black (#0b0b0b) & Gold (#d4af37) luxury theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0b0b0b;
  color: #e5e5e5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.gold {
  color: #d4af37;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 400;
  display: block;
  margin-bottom: 0.3rem;
}

/* ----- HERO (full screen with background image) ----- */
.hero {
  height: 100vh;
  background: url('../img/header.webp') center center / cover no-repeat;
  position: sticky;
  display: flex;
  flex-direction: column;
  color: white;
}

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

.navbar {
  position: sticky;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background:  rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #d4af37;
  top: 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
}

.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  margin-left: 2.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 5rem;
}

.hero-sub {
  font-size: 1rem;
  letter-spacing: 6px;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@keyframes drift {
      0% { transform: translate(0,0) rotate(0deg); }
      100% { transform: translate(5%,5%) rotate(2deg); }
    }
    
.hero h1 {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
  color: #ddcecede;
}

.btn-gold {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #d4af37;
  color: #d4af37;
  padding: 1rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: 0.4s;
  backdrop-filter: blur(2px);
  border-radius: 70px;
}

.btn-gold:hover {
  background: #d4af37;
  color: #0b0b0b;
}

/* ----- ABOUT (dropcap, frame) ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.75rem;
  color: #d4af37;
  font-weight: 600;
}

.signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #fff;
}

.img-frame {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem;
}

.img-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.5s;
}

.img-frame img:hover {
  filter: grayscale(0%);
}

/* ----- OFFER CARDS (3) ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.offer-card {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, border-color 0.3s;
}

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

.card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 2rem 1.5rem;
  text-align: center;
}

.card-content h3 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.card-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 1.2rem;
}

.card-price {
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  color: #d4af37;
  margin-bottom: 1rem;
}

.card-divider {
  width: 40px;
  height: 1px;
  background: #d4af37;
  margin: 1rem auto;
}

.card-link {
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px dotted #d4af37;
  padding-bottom: 3px;
}

/* ----- WHY CHOOSE US (4 icons) ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.why-item {
  padding: 1.5rem;
}

.why-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
  line-height: 1;
}

.why-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  color: white;
}

.why-item p {
  font-size: 0.9rem;
  color: #aaa;
}

/* ----- SERVICES (list) ----- */
.services-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.services-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed #333;
  font-size: 1.1rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
}

.service-time, .service-price {
  font-weight: 300;
  color: #d4af37;
}

.service-price {
  font-weight: 500;
  min-width: 70px;
  text-align: right;
}

.services-note {
  text-align: center;
  margin-top: 2rem;
  color: #777;
  font-style: italic;
  letter-spacing: 0.5px;
}

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

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #2a2a2a;
  transition: border 0.3s, transform 0.3s;
}

.gallery-item img:hover {
  border: 1px solid #d4af37;
  transform: scale(1.02);
}

/* ----- MAP (iframe) + contact details----- */
.map-wrapper {
  width: 100%;
  height: 380px;
  border: 2px solid #1e1e1e;
  margin-bottom: 2rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(80%) invert(10%) brightness(0.9);
  transition: filter 0.5s;
}

.map-wrapper iframe:hover {
  filter: grayscale(40%) invert(0%);
}

.contact-details {
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
  background: #0a0a0a;
  padding: 2rem;
  border: 1px solid #d4af37;
}

.contact-details p {
  margin: 0.3rem 0;
}

.contact-divider {
  width: 200px;
  height: 1px;
  background: #fcdc73;
  margin: 1.5rem auto;
}

/* ----- FOOTER ----- */
.footer {
  background: #050505;
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid #d4af37;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 6px;
  color: rgb(255, 218, 52);
}

.footer-divider {
  width: 350px;
  height: 1px;
  background: #d4af37;
  margin: 1.5rem auto;
}

.footer-copy {
  color: #8b8686;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.sticky-bar {
  position: fixed; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  background: #000000; 
  padding: 10px;
  display: flex; 
  gap: 10px; 
  z-index: 9999; 
  border-top: 2px solid var(--gold-main);
  transform: translateZ(0);
}

.sticky-btn { 
  flex: 1; 
  padding: 12px; 
  border-radius: 5px; 
  text-align: center; 
  font-weight: bold; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 8px; 
}

.btn-wa { 
  background: transparent; 
  border: 2px solid #25D366; 
  color: #25D366; 
}

.btn-call { 
  background: transparent; 
  border: 2px solid #e2c000; 
  color: #e4a802; 
}

/* ----- RESPONSIVE (mobile first) ----- */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .nav-links a {
    margin: 0 1rem;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .about-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    gap: 0.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a {
    margin: 0.3rem 1rem;
  }
  .services-list li {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .service-name {
    width: 100%;
  }
}

@media (min-width: 768px) {
   .sticky-bar { display: none; }
}