:root {
  --primary-brown: #8B4A3B;
  --accent-gold: #D4A24C;
  --background-cream: #F3ECDC;
  --accent-red: #A13E32;
  --text-dark: #2E2E2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--background-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #8B4A3B, #A13E32);
  color: white;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  width: 55px;
}

.lang-switch button {
  background: var(--accent-gold);
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch button:hover {
  background: white;
}

/* HERO */
.hero {
  background: url("images/banner.jpg") center/cover no-repeat;
  height: 60vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #FFFFFF;
  font-weight: 800;

  /* 3D + subtle brand glow */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 6px 20px rgba(0,0,0,0.45),
    0 0 14px rgba(161, 62, 50, 0.45); /* brand glow */
}



.hero-sub {
  font-size: 1.1rem;
  color: #F5E6D3; /* Soft cream */
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* SECTION */
.section {
  padding: 30px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-brown);
  position: relative;
}

.section h3::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--accent-gold);
  display: block;
  margin: 10px auto;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card i {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transition: transform 0.4s;
}

.gallery img:hover {
  transform: scale(1.08);
}

/* CENTER LAST GALLERY IMAGE IN DESKTOP */
@media (min-width: 769px) {
  .gallery-center {
    grid-column: 2 / 3;
  }
}


/* SOCIAL */
.icons a {
  font-size: 32px;
  margin: 8px;
  color: var(--primary-brown);
  text-decoration: none; /* 🔥 removes underscore */
  transition: transform 0.3s, color 0.3s;
}


.icons a:hover {
  transform: scale(1.2);
  color: var(--accent-red);
}

.review-btn,
.map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(90deg, #D4A24C, #A13E32);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.review-btn:hover,
.map-btn:hover {
  opacity: 0.9;
}

/* CONTACT */
.contact p {
  margin: 12px 0;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #8B4A3B, #A13E32);
  color: white;
  text-align: center;
  padding: 20px;
}

.credit {
  font-size: 13px;
  opacity: 0.8;
}

/* MOBILE */
/* MOBILE HERO FIX */
@media (max-width: 768px) {

  .hero {
    background-image: url("images/banner-mobile.jpg"); /* mobile image */
    height: 75vh;
    background-position: center;
    background-size: cover;
  }

  .hero h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 1rem;
  }

}

/* ===============================
   MOBILE HEADER SIZE FIX
================================ */
@media (max-width: 768px) {

  header {
    padding: 8px 12px;
  }

  .logo-area img {
    width: 40px; /* smaller logo */
  }

  .logo-area h1,
  .site-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .lang-switch button {
    padding: 5px 10px;
    font-size: 12px;
  }

}

