/* ===== Your base styles (kept) ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&display=swap');
body{ font-family:"Cormorant", serif; }
/* Hide horizontal overflow globally */
html,body{ width:100%; overflow-x:hidden; }

/* ===== NAVBAR (fixed) ===== */
.navbar{
  background:#fff;
  position:fixed;
  top:0; left:0; right:0;
  z-index:1050;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.nav-link{
  font-weight:500;
  letter-spacing:.04em;
  color:#182024;
  opacity:.9;
}
.nav-link:hover,
.nav-link.active{ color:#0b0f12; opacity:1; }

/* evenly spaced center nav (desktop) */
@media (min-width: 992px){
  .main-nav{ gap:3.5rem; }
}

/* icon links */
.nav-icon-link{ color:#212529; opacity:.9; text-decoration:none; }
.nav-icon-link:hover{ opacity:1; }

/* CTA (desktop) */
.enquire-btn{
  border:1.5px solid #212529;
  transition:all .15s ease;
}
.enquire-btn:hover{ background:#212529; color:#fff; }

/* Offcanvas width */
.offcanvas{ width:290px; z-index:1060; }
.offcanvas .nav-link{ font-size:1rem; }

/* Improve hamburger visibility on light bg */
.navbar-light .navbar-toggler-icon{ filter:invert(0); }

/* Demo: space below fixed header (you can keep this) */
body{ padding-top:76px; }

/* ===== NEW: Desktop hover dropdown (smooth fade/slide) ===== */
.navbar .dropdown-menu{
  border:0;
  border-radius:.5rem;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  padding:.5rem 0;
}

/* Only enable hover behavior on desktop */
@media (min-width: 992px){
  .navbar .dropdown-hover .dropdown-menu{
    display:block;                 /* keep in flow so transition works */
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    pointer-events:none;
    margin-top:.25rem;
  }
  .navbar .dropdown-hover:hover > .dropdown-menu,
  .navbar .dropdown-hover:focus-within > .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    transition-delay:0s;
    pointer-events:auto;
  }
}

/* Dropdown items look */
.dropdown-item{
  font-weight:500;
  padding:.5rem 1rem;
}
.dropdown-item:hover{ background:#f6f7f8; }

    /* Demo page padding (real padding is set dynamically by JS) */
    body { padding-top: 76px; }

/* ===== About hero ===== */
.hero-about{
  position: relative;
  min-height: clamp(48vh, 56vh, 72vh);   /* responsive height */
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Background image (uses a CSS variable so you can swap via inline style) */
.hero-about .hero-bg{
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;   /* change to 'center top' if you want more headroom */
  background-repeat: no-repeat;
  transform: scale(1.02);        /* tiny scale to avoid gaps on zoom */
  will-change: transform;
}

/* Subtle dark veil to keep text readable on every photo */
.hero-about .hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.25) 100%
  );
  pointer-events: none;
}

/* Centered text block */
.hero-about .hero-inner{
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  padding-inline: 1rem;
}

/* Title sizes scale nicely from mobile to desktop */
.hero-about .hero-title{
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
}

/* Optional subheading style */
.hero-about .hero-sub{
  margin-top: .75rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: .95;
}

/* Respect reduced motion users */
@media (prefers-reduced-motion: reduce){
  .hero-about .hero-bg{ transform: none; }
}
    /* --- Line-style inputs to match your previous form --- */
    .line-label{
      display:block;
      font-size:.9rem;
      letter-spacing:.02em;
      color:#6c757d;
      margin-bottom:.2rem;
    }
    .line-input{
      border:0;
      border-bottom:1.5px solid rgba(0,0,0,.25);
      border-radius:0;
      padding-left:0;
      padding-right:0;
      background:#fff;
    }
    .line-input:focus{
      box-shadow:none;
      border-color:#212529;
    }

    /* Contact info */
    .contact-card{
      background:#fff;
      border:1px solid rgba(0,0,0,.08);
      border-radius:1rem;
      padding:1.25rem 1.25rem;
    }
    .contact-item{
      display:flex; gap:.75rem; align-items:flex-start;
      padding:.6rem 0;
      border-bottom:1px dashed rgba(0,0,0,.08);
    }
    .contact-item:last-child{ border-bottom:0; }
    .contact-item i{
      font-size:1.1rem;
      width:1.75rem; height:1.75rem; border-radius:50%;
      display:inline-flex; align-items:center; justify-content:center;
      color:#fff; background:#212529;
      flex:0 0 1.75rem;
    }
    .contact-item a{ color:#212529; text-decoration:none; }
    .contact-item a:hover{ text-decoration:underline; }

    /* Social icons */
    .socials a{
      width:40px; height:40px; border-radius:999px;
      display:inline-flex; align-items:center; justify-content:center;
      background:#212529; color:#fff; text-decoration:none;
      transition:transform .15s ease, opacity .15s ease;
    }
    .socials a:hover{ transform:translateY(-2px); opacity:.9; }

    /* Map */
    .map-wrap{
      width:100%;
      height:300px;                   /* compact height */
      border:1px solid rgba(0,0,0,.1);
      border-radius:1rem;
      overflow:hidden;
      background:#f8f9fa;
    }

    /* Small polish */
    .eyebrow{
      font-weight:700; letter-spacing:.22em; text-transform:uppercase;
      color:#6c757d; font-size:.8rem;
    }
    .contact-title{
      font-weight:400; line-height:1.15;
    }

    /* Optional: tidy section background */
    .contact-section{
      background:#fafafa;
    }
       /* ===== Footer ===== */
  .site-footer{
    --footer-bg: url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?q=80&w=1600&auto=format&fit=crop'); /* swap to your image */
    position: relative;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 24px;
    background: #0b0b0b;
    overflow: hidden;
  }
  .site-footer::before{
    content:"";
    position: absolute; inset: 0;
    background-image: var(--footer-bg);
    background-size: cover;
    background-position: center;
    filter: brightness(.35); /* dim the image */
    z-index: 0;
  }
  .site-footer::after{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,.55));
    z-index: 0;
  }
  .site-footer .footer-inner{ position: relative; z-index: 1; }

  /* social pills */
  .social-list a{
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff; border-radius: 999px;
    transition: .2s ease;
  }
  .social-list a:hover{ background: #ffffff1a; border-color: #fff; transform: translateY(-2px); }

  /* link styles */
  .footer-link{ color: rgba(255,255,255,.9); text-decoration: none; }
  .footer-link:hover{ color:#fff; text-decoration: underline; }

  .footer-title{
    font-weight: 600; letter-spacing:.03em; text-transform: uppercase;
    font-size: 0.95rem; color:#fff; opacity:.9;
  }

  .footer-hr{ border-color: rgba(255,255,255,.2); opacity:1; }

  /* bottom bar */
  .contact-bar{
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 14px; margin-top: 16px;
    font-size: 0.95rem;
  }
  .contact-item{ color:#fff; text-decoration:none; opacity:.95; }
  .contact-item:hover{ opacity:1; text-decoration: underline; }

  /* spacing tweaks on small screens */
  @media (max-width: 575.98px){
    .site-footer{ padding-top: 36px; }
    .footer-col{ margin-bottom: 20px; }
  }
