                            @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@500;600&display=swap');
:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --accent: #1e6b2d; /* green for buttons */
  --nav: #111;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body{
  margin:0; padding:0;
  background:var(--bg); color:var(--text);
  font:16px/1.5 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid #eee;
}

.site-header .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

/* ===== Logo (BIG + LEFT CORNER) ===== */
.brand {
  margin-left: 0; /* reset natural container margin */
}

.brand img {
  display: block;
  height: 200px;
  width: auto;
  transform: translateX(20px); /* gentle move to the right */
}

/* ===== Navigation (tabs spaced out, Book Now untouched) ===== */
nav {
  margin-left: 800px;           /* keep same position that worked */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Tabs styling */
nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nav);
  text-decoration: none;
  letter-spacing: 0.2px;
  margin-right: 55px;           /* <-- add more space between each tab */
  transition: color .18s ease;
}

nav a:last-of-type {
  margin-right: 0;              /* prevent extra space after Contact */
}

nav a:hover {
  color: #c9a227;               /* gold hover */
}

/* BOOK NOW button aligned naturally to the right */
nav .btn-cta {
  margin-left: 60px;              /* subtle separation from last tab */
  font-family: inherit;
  font-size: 1.05rem;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
}

/* ============ Hero Section ============ */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Smooth diagonal fade — darker on left, clear on right */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,   /* strong fade bottom-left */
    rgba(255, 255, 255, 0.65) 35%,  /* moderate fade */
    rgba(255, 255, 255, 0.25) 70%,  /* lighter fade */
    rgba(255, 255, 255, 0.05) 100%  /* almost clear top-right */
  );
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 8vh 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.8vw, 66px); /* slightly smaller */
  line-height: 1.1;
  margin: 0 0 18px;
  color: #1f5a2b; /* Rolex-style royal green */
  letter-spacing: 0.2px;
}

.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; /* make slightly larger */
  max-width: 700px;
  margin: 0 0 26px;
  color: #333;
}

.hero .btn-cta {
  font-size: 1rem;
  border-radius: 12px;
}

/* Large green BOOK NOW button under hero text */
.hero .hero-booknow {
  display: inline-block;
  background: #1f5a2b;        /* Royal green */
  color: #fff;                /* White text */
  padding: 16px 34px;         /* Bigger button */
  font-size: 1.25rem;         /* Same as headline scale */
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero .hero-booknow:hover {
  background: #2c7a3a;        /* Slightly lighter green on hover */
  transform: translateY(-3px);
}

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section-title{
  font-family:'Playfair Display', serif;
  color:#1f5a2b;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.1;
  margin: 0 0 10px;
}
.section-lead{
  font-family:'Poppins', sans-serif;
  color:#444;
  font-size:1.05rem;
  max-width: 900px;
  margin: 0 0 28px;
}

/* Grid */
.grid-3{
  display:grid;
  gap:22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
}

/* Cards */
.card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.card-img{
  width:100%; height: 220px; object-fit:cover; object-position:center;
}
.card-body{ padding:16px 18px 20px; }
.card-body h3{
  font-family:'Playfair Display', serif;
  margin:0 0 8px; color:#1f5a2b; font-size:1.35rem;
}
.card-body p{
  font-family:'Poppins', sans-serif;
  color:#333; font-size:.98rem;
}

/* Section CTA */
.section-cta{ margin-top:28px; }
.section-book{
  background:#1f5a2b; color:#fff; padding:14px 26px; border-radius:12px;
  font-weight:700; letter-spacing:.3px; text-decoration:none; display:inline-block;
  transition: background .2s ease, transform .2s ease;
}
.section-book:hover{ background:#2c7a3a; transform: translateY(-2px); }



/* Larger, bolder Free Estimates button under slogan */
.hero .free-estimate {
  display: inline-block;
  background: #1f5a2b;     /* royal green */
  color: #fff;
  padding: 14px 30px;      /* larger than before */
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero .free-estimate:hover {
  background: #2c7a3a;     /* lighter green hover */
  transform: translateY(-2px);
}

/* ============ Floating Buttons ============ */
.fab {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  background: #fff;
}

.whatsapp {
  left: 24px;
  background-image: url('../icons/whatsapp.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
}

.cart {
  right: 24px;
  background-image: url('../icons/cart.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
}

/* ============ Mobile ============ */
@media (max-width: 720px) {
  .brand img {
    height: 120px;             /* smaller on phones */
    transform: translateX(-15px);
  }

  nav a:not(.btn-cta) {
    display: none;
  }

  .fab {
    width: 50px;
    height: 50px;
  }
}
