/* =========================
   RESET & BASE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #ffffff;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

section {
  padding: 4rem 0;
}

.alt-section {
  background: #f6f5f3;
}

.section-header {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: #555;
}

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

header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO IMAGE */

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Slightly smaller on mobile */
@media (max-width: 748px) {
  .logo img {
    height: 48px;
  }
}

.nav-links a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #d6a354;
}

.tagline {
  align-items: left;
  font-style: italic;
  font-weight: bold, 32px;
  font-family: cursive;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #d6a354;
  color: #ffffff;
}

.btn-primary:hover {
  background: #c19247;
}

.btn-outline {
  border: 1px solid #d6a354;
  color: #d6a354;
}

.btn-outline:hover {
  background: #d6a354;
  color: #ffffff;
}

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

.hero-bg {
  position: relative;
  min-height: 85vh;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: left;
}

/* Mobile adjustments */ 
@media (max-width: 768px) 
{ .hero-bg 
  { min-height: 50vh; /* Shorter height on mobile */ 
   background-position: top; /* Optional: show top part of image */ 
  } 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30,30,30,0.4),
    rgba(30,30,30,0.55)
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
}

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

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #f0e6d2;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-title span {
  color: #f3e5c6;
}

.hero-subtitle {
  color: #f1f1f1;
  margin-bottom: 1.4rem;
}

.hero-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #eaeaea;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 0.4rem;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pricing-card ul {
  list-style: none;
  margin-top: 0.8rem;
}

.pricing-card ul li {
  margin-bottom: 0.4rem;
}

.pricing-card.featured {
  border: 2px solid #d6a354;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #d6a354;
}

/* =========================
   FAQ
========================= */

.faq-list {
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-item h4 {
  margin-bottom: 0.4rem;
}

/* =========================
   CTA
========================= */

.cta {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: auto;
}

.cta p {
  margin: 0.8rem 0 1.2rem;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 1.2rem 0;
  background: #f6f5f3;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }
}
