/* 🔹 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔹 BODY */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* 🔹 COLORS */
:root {
  --gold: #d4af37;
  --dark: #111;
  --primary: #7a1f1f;
  --light: #f8f8f8;
}

/* 🔹 CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* 🔹 HEADER DEFAULT */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  transition: all 0.4s ease;
}

/* 🔹 LOGO IMAGE */
.logo img {
  height: 45px;
  width: auto;
  display: block;
}

/* 🔹 SMALL ON SCROLL (PREMIUM EFFECT) */
.header.scrolled .logo img {
  height: 38px;
}

/* 🔹 NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* 🔹 MENU */
.menu a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.menu a:hover {
  color: #d4af37;
}

/* 🔥 GLASS BLACK OVERLAY ON SCROLL */
.header.scrolled {
  background: rgba(0, 0, 0, 0.5); /* 🔥 transparent black */
  backdrop-filter: blur(10px);    /* 🔥 glass effect */
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* 🔹 SLIGHT SHRINK ON SCROLL */
.header.scrolled .nav {
  padding: 12px 0;
}


/* 🔹 HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 🔹 IMAGE (FULL WIDTH + FACE FIX) */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 KEY: prevents face hiding under header */
  object-position: center 20%;

  display: block;
}

/* 🔹 BOTTOM BUTTON */
.hero-bottom {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

/* 🔹 GOLD OUTLINE BUTTON */
.btn-outline-gold {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  background: transparent;
  transition: 0.3s;
}

.btn-outline-gold:hover {
  background: #d4af37;
  color: #000;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .hero {
    height: 85vh;
  }

  .hero-img {
    object-position: center top; /* 🔥 ensures face visible */
  }

  .hero-bottom {
    bottom: 20px;
  }

  .btn-outline-gold {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* 🔹 ABOUT SECTION */
.about {
  padding: 100px 0;
  background: #fff;
}

/* 🔹 GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 🔹 IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* 🔹 EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;

  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge span {
  font-size: 28px;
  font-weight: bold;
  color: #d4af37;
}

.experience-badge p {
  font-size: 12px;
}

/* 🔹 CONTENT */
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.7;
}

/* 🔹 FEATURES GRID */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature span {
  color: #d4af37;
  font-size: 18px;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    bottom: 10px;
    left: 10px;
  }
}

/* 🔹 FEATURES */
.features span {
  display: block;
  margin-top: 8px;
}

/* 🔹 PRODUCTS */
.products {
  padding: 100px 0;
  background: var(--gold);
}

/* 🔹 CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.card {
  background: #d78a8a;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  text-align: center;
}


/* 🔹 CTA SECTION */
.cta {
  padding: 100px 20px;

  /* 🔥 PREMIUM BACKGROUND */
  background: linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)
    ),
    url('assets/images/cta-bg.png') center/cover no-repeat;

  text-align: center;
  color: #fff;
}

/* 🔹 CONTAINER */
.cta-container {
  max-width: 800px;
  margin: auto;
}

/* 🔹 HEADING */
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

/* 🔹 TEXT */
.cta p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* 🔹 BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* 🔹 GOLD BUTTON */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
}

/* 🔹 OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .cta {
    padding: 70px 20px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* 🔹 CONTACT */
/* 🔹 CONTACT SECTION */
.contact {
  padding: 100px 20px;
  background: #f9f9f9;
}

/* 🔹 GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* 🔹 LEFT SIDE */
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-sub {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* 🔹 DETAILS */
.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: center;
}

.contact-item span {
  font-size: 18px;
}

/* 🔹 SOCIAL BUTTONS */
.contact-social {
  display: flex;
  gap: 15px;
}

/* 🔹 INSTAGRAM BUTTON */
.insta-btn {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* 🔹 WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* 🔹 FORM */
/* 🔹 MAP CONTAINER */
.contact-map {
  width: 100%;
  height: 350px;

  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 🔥 FULL HEIGHT ON DESKTOP */
@media (min-width: 768px) {
  .contact-map {
    height: 100%;
    min-height: 400px;
  }
}

/* 🔹 BUTTON */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
}

/* 🔥 MOBILE */
@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-social {
    flex-direction: column;
  }
}

/* 🔹 FOOTER */
.footer {
  background: #0f0f0f;
  color: #ccc;
  padding-top: 70px;
}

/* 🔹 GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* 🔹 BRAND */
.footer-brand img {
  height: 42px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

/* 🔹 HEADINGS */
.footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

/* 🔹 LINKS */
.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

/* 🔹 CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #aaa;
}

/* 🔹 SOCIAL */
.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

/* 🔹 ICON */
.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icon.whatsapp {
  background: #25D366;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* 🔹 BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 20px 0;

  text-align: center;
  font-size: 13px;
  color: #777;
}

/* 🔥 MOBILE */
@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* 🔥 MOBILE */
@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* 🔹 MOBILE */
@media(max-width: 768px) {

  .menu {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }
}