/* css/style.css - Black (#0b0b0b) & Gold (#d4af37) luxury theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --site-header-height: 0px;
  --site-sticky-height: 0px;
}

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;
  padding-top: var(--site-header-height);
}

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: 3rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.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 {
  min-height: calc(85vh - var(--site-header-height));
  background: url('../img/header.webp') center center / cover no-repeat;
  position: relative;
  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(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #d4af37;
}

.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: 0.7rem;
  letter-spacing: 2px;
  color: #fff;
  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: 250px;
  border: 2px solid #1e1e1e;
  margin-bottom: 2rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
 
  transition: filter 0.5s;
}

.map-wrapper iframe:hover {
  filter: invert(0%);
}

.contact-details {
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
  background: #0a0a0a;
  padding: 0.5rem;
  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 0;
  text-align: center;
  border-top: 1px solid #d4af37;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: rgb(255, 218, 52);
}

.footer-divider {
  width: 350px;
  height: 1px;
  background: #d4af37;
  margin: 1rem auto;
}

.footer-copy {
  color: #8b8686;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.sticky-bar {
  position: fixed; 
  right: 15px;
  bottom: 30px;
  width: auto;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  transform: translateZ(0);
}

.sticky-btn { 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center; 
  font-weight: bold; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.btn-wa { 
  background: #25D366; 
  border: 2px solid #25D366; 
  color: #ffffff;
}

.btn-wa:hover {
  background: #25D366;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.btn-call { 
  background: #e4a802; 
  border: 2px solid #e2c000; 
  color: #000000;
}

.btn-call:hover {
  background: #e4a802;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(228, 168, 2, 0.5);
}

.btn-scroll-top {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  display: none;
}

.btn-scroll-top:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ----- FLOATING OFFER CARD (continuous hover) ----- */
.floating-offers {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(20px + var(--site-sticky-height));
  display: flex;
  gap: 1rem;
  z-index: 15;
  pointer-events: auto;
}

.floating-offer {
  background: rgba(44, 2, 2, 0.808);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 230px;
  text-align: center;
  transform-origin: center;
  animation: floatY 4s ease-in-out infinite;
  margin: 0 0 -70px;
  backdrop-filter: blur(2px);
}

.floating-offer h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #d4af37;
}

.floating-offer p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.floating-offer .btn-offer {
  margin-top: 6px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Stagger multiple offers for a subtle continuous effect */
.floating-offer:nth-child(2) { animation-delay: 0.6s; }
.floating-offer:nth-child(3) { animation-delay: 1.2s; }

@media (max-width: 700px) {
  .floating-offers { left: 50%; transform: translateX(-50%); gap: 0.6rem; }
  .floating-offer { min-width: 350px; padding: 0.7rem 2rem; }
}

/* ----- RESPONSIVE (mobile first) ----- */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 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;
  }
  .sticky-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .sticky-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .sticky-bar {
    right: 10px;
    bottom: 20px;
    gap: 10px;
  }
  .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%;
  }
}