/* ========== GLOBAL STYLES ========== */
:root {
  --primary-color: #8b5a2b;
  --primary-dark: #6a4320;
  --primary-light: #c19a6b;
  --accent: #556b2f;
  --text-dark: #2d2d2d;
  --text-muted: #6c757d;
  --bg-light: #f9f6f0;
  --white: #ffffff;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.12);
  --border-radius: 16px;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 76px; /* for fixed header */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
a {
  text-decoration: none;
}
.section-heading {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.text-primary {
  color: var(--primary-color) !important;
}

/* ========== HEADER ========== */
.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e0d5;
  transition: all 0.3s ease;
}
.main-header.scrolled {
  box-shadow: var(--shadow);
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--primary-color);
}
.navbar-toggler {
  border: none;
  box-shadow: none;
}
.logo {
  max-width: 80px;
}

/* ========== HERO ========== */
.hero-section {
  background-color: var(--bg-light);
  padding: 100px 0 80px;
}
.hero-section h1 {
  color: var(--primary-dark);
}
.hero-section .badge {
  font-size: 0.9rem;
  background-color: #e6d5c3;
  color: var(--primary-dark);
  border-radius: 30px;
}

/* ========== FEATURES ========== */
.feature-card {
  border: 1px solid #e5e0d5;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f1e8dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

/* ========== SERVICE CARDS ========== */
.service-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid #e5e0d5;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ========== GALLERY ========== */
.gallery-img {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 576px) {
  .gallery-img {
    height: 120px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background-color: #2d2d2d;
}
.footer a:hover {
  color: var(--primary-light) !important;
}
.social-icons a {
  font-size: 1.2rem;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: var(--primary-light) !important;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-buttons .btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.overlay-caption {
  width: 100%;
  padding: 15px;
  display: none;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
