/* ===== FONT FACE ===== */
@font-face {
  font-family: 'Dragonlord';
  src: url('../fonts/Dragonlord_PERSONAL_USE_ONLY.otf') format('opentype');
}

/* ===== VARIABLES ===== */
:root {
  --gold: #b08d57;
  --dark: #0f0f0f;
  --dark-soft: #151515;
  --white: #ffffff;
  --gray: #cfcfcf;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== COMMON ===== */
section {
  padding: 80px 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}


/* header */

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
}

.brand-main {
  font-family: 'Dragonlord', serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* WhatsApp */
.whatsapp-header img {
  width: 26px;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
  display: none;
  font-size: 26px;
  color: var(--gold);
  cursor: pointer;
}

/* ===== MOBILE NAV POPUP ===== */
/* ===== MOBILE NAV POPUP (FIXED) ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 34px;
  color: var(--gold);
  cursor: pointer;
}


.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 22px 0;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--white);
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 22px 0;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 2px;
}

.close-menu {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 36px;
  color: #d4af37;
  cursor: pointer;
}

/* Hide mobile icon on desktop */
.mobile-menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Desktop nav visible only on desktop */
@media (max-width: 768px) {
  .desktop-nav,
  .whatsapp-header {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}


/* hero css */

/* ===== HERO SLIDER ===== */ 
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slide base */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Image & Video background */
.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for luxury contrast */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Brand */
.hero-main {
  font-family: 'Dragonlord', serif;
  font-size: 82px;
  color: #d4af37;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  letter-spacing: 4px;
}

.hero-tagline {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
}


/* ===== HERO TEXT ANIMATION ===== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}


/* hero btn */


/* ===== HERO CTA BUTTONS ===== */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary Button */
.btn {
  padding: 12px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Gold Primary Button */
.btn-primary {
  border: 2px;
  border: 1px solid #d4af37;
}

.btn-primary:hover {
  background: #b8932b;
  transform: translateY(-2px);
  color: #fff;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}



/* Mobile */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset animation on slide change */
.slide:not(.active) .animate {
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-main {
    font-size: 48px;
  }
  .hero-sub {
    font-size: 24px;
  }
}



/* about */

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.about-content p {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


/* ===== FADE IN ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 {
  transition-delay: 0.2s;
}


/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: #111;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

/* Item base */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* Sizes */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover effect */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Button */
.gallery-btn {
  text-align: center;
  margin-top: 40px;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 34px;
  }
}




/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  position: relative;
  padding: 40px 26px;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35); /* subtle gold */
  border-radius: 6px;
  transition: color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}

/* Text */
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 14px;
  color: #111;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #555;
}


/* Animated border draw */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid #d4af37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Hover color change */
.service-card:hover {
  background: #111;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}


/* ===== SERVICES SECTION (MOBILE FIX) ===== */
@media (max-width: 768px) {

  .services-section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 22px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Disable hover background on mobile (touch devices) */
  .service-card:hover {
    background: #fff;
  }

  .service-card:hover h3,
  .service-card:hover p {
    color: #111;
  }

  /* Keep gold border visible */
  .service-card::before {
    transform: scaleX(1);
  }
}


/* ===== TESTIMONIALS SLIDER (REAL ANIMATION) ===== */
.testimonials-section {
  padding: 100px 0;
  background: #f9f9f9;
  text-align: center;
}

.t-slider {
  max-width: 820px;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
}

.t-track {
  display: flex;
  transition: transform 0.8s ease;
  will-change: transform;
}

.t-slide {
  min-width: 100%;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 46px 34px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

/* Stars */
.t-slide .stars {
  color: #d4af37;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Text */
.t-slide p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.t-slide h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #111;
}

/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.t-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.t-dots button.active {
  background: #d4af37;
  transform: scale(1.15);
}

/* Mobile */
@media (max-width: 768px) {
  .t-slide {
    padding: 36px 22px;
  }

  .t-slide p {
    font-size: 18px;
  }
}




/* ===== PREMIUM CONTACT SECTION ===== */
.contact-section {
  padding: 120px 0;
  background: #fafafa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.contact-content .section-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
}

.contact-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin: 14px 0;
  color: #947100;
}

.contact-content p {
  color: #555;
  max-width: 480px;
  line-height: 1.7;
}

.contact-actions {
  margin: 30px 0;
  display: flex;
  gap: 16px;
}

.btn-whatsapp {
  background: #d4af37;
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #d4af37;
  padding: 14px 28px;
  color: #000;
  text-decoration: none;
}

.contact-info p {
  font-size: 14px;
  margin-top: 6px;
}

/* Right */
.contact-visual {
  background: url("img/../../img/whatsapp.png") center/cover no-repeat;
  padding: 50px;
  position: relative;
}

.contact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
}

.contact-form {
  position: relative;
  background: #fff;
  padding: 40px;
  border: 1px solid #eee;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content h2 {
    font-size: 32px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-visual {
    padding: 30px;
  }
}



/* footer  */


/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  margin-top: 120px;
}

/* Map */
.footer-map iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.footer h3,
.footer h4 {
  color: #d4af37;
}

.footer-brand img {
  width: 70px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 300px;
  line-height: 1.7;
}

/* Links */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Social */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social img {
  width: 32px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Scroll Top */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #d4af37;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  .footer-content {
    text-align: center;
  }

  .footer-contact,
  .footer-links,
  .footer-brand {
    align-items: center;
    justify-content: center;
  }

  .footer-contact p,
  .footer-links ul,
  .footer-brand p {
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-social {
    justify-content: center;
  }
}
  
