/* =========================
   GLOBAL
========================= */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111111;
  color: #F5F5F5;
}

/* =========================
   HEADER
========================= */

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #151515;
}

.logo img {
  width: 500px;
  max-height: 400px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 15px;
}

nav a {
  position: relative;
  color: #C6A54C;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Underline hover animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #F5F5F5;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #F5F5F5;
}

nav a:hover::after {
  width: 100%;
}

/* =========================
   NAV CTA BUTTON
========================= */

.nav-cta {
  background-color: #C6A54C;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: #F5F5F5;
  color: #000 !important;
}

/* =========================
   HERO
========================= */

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  color: #C6A54C;
  font-size: 64px;
  font-weight: normal;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background-color: #C6A54C;
  color: black;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #F5F5F5;
}

/* =========================
   PAGE HEADER
========================= */

.page-header {
  padding: 100px 20px 40px 20px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: #C6A54C;
  font-size: 42px;
  letter-spacing: 1px;
}

/* =========================
   SERVICES PREVIEW
========================= */

.services-section {
  padding: 70px 10%;
  background-color: #1A1A1A;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
}

.service-text {
  max-width: 500px;
}

.service-text h2 {
  font-family: 'Playfair Display', serif;
  color: #C6A54C;
  margin-bottom: 20px;
}

/* =========================
   FOUNDER
========================= */

.founder {
  padding: 80px 10%;
}

.founder-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.founder-image img {
  width: 350px;
  border-radius: 12px;
}

.founder-content {
  max-width: 600px;
}

.founder-content h2 {
  font-family: 'Playfair Display', serif;
  color: #C6A54C;
  margin-bottom: 25px;
  font-size: 36px;
}

.founder-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =========================
   GALLERY
========================= */

.gallery-section {
  padding: 60px 10% 80px 10%;
  background-color: #1A1A1A;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(198,165,76,0.25);
}

/* =========================
   PRICING
========================= */

.pricing-section {
  padding: 60px 10%;
}

.category-title {
  font-family: 'Playfair Display', serif;
  color: #C6A54C;
  text-align: center;
  margin: 40px 0 20px 0;
  font-size: 26px;
  letter-spacing: 1px;
}

.price-list {
  max-width: 750px;
  margin: 0 auto 30px auto;
}

.price-row {
  display: flex;
  align-items: center;
  margin: 6px 0;
  font-size: 17px;
}

.service-name {
  white-space: nowrap;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted #C6A54C;
  margin: 0 10px;
  opacity: 0.6;
}

.price {
  white-space: nowrap;
  font-weight: 600;
  color: #C6A54C;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  padding: 80px 10%;
  background-color: #1A1A1A;
}

.contact-block {
  margin-bottom: 60px;
  max-width: 700px;
}

.contact-block h2 {
  font-family: 'Playfair Display', serif;
  color: #C6A54C;
  margin-bottom: 20px;
}

.contact-block p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links a,
.whatsapp-link {
  color: #C6A54C;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin: 8px 15px 8px 0;
  transition: all 0.3s ease;
}

.social-links a:hover,
.whatsapp-link:hover {
  color: #F5F5F5;
  text-decoration: underline;
}

.contact-block input,
.contact-block textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background-color: #111111;
  border: 1px solid #333;
  color: white;
}

.contact-block button {
  padding: 12px 25px;
  background-color: #C6A54C;
  color: black;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-block button:hover {
  background-color: #F5F5F5;
}

/* =========================
   LOCATION / MAP
========================= */

.location-wrapper {
  display: flex;
  gap: 40px;
  margin: 40px auto 80px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}

.shop-photo,
.map {
  flex: 1;
  min-width: 300px;
}

.shop-photo img,
.map iframe {
  width: 100%;
  border-radius: 12px;
}

.shop-address {
  margin-top: 15px;
  font-size: 15px;
  color: #C6A54C;
  font-weight: 500;
  line-height: 1.6;
}

/* =========================
   SHOP
========================= */

.coming-soon-section {
  padding: 120px 20px;
  text-align: center;
}

.coming-soon-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #C6A54C;
  letter-spacing: 2px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .service-row,
  .founder-wrapper,
  .location-wrapper {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* SAFE MOBILE LOGO ADJUSTMENT */
  .logo img {
    width: 100%;
    max-width: 300px;
  }

}