@charset "UTF-8";

/* ===== Color scheme (unchanged) ===== */
:root{
  --accent: #00D75C;
  --white: #ffffff;
  --bg-overlay: rgba(0,0,0,0.55);
}

/* ===== Page / background ===== */
html, body { height: 100%; }

body{
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--white);
  min-height: 100vh;
  background: #000;
}

/* Background image + overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("../Images/IMG_7788.png");
  background-repeat: no-repeat;

  /* default: good general crop */
  background-size: cover;
  background-position: 50% 18%;

  z-index: -2;
  filter: brightness(1.08) contrast(0.92);
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0,215,92,0.10), rgba(0,0,0,0.00) 60%),
    rgba(0,0,0,0.38);
  z-index: -1;
}

/*
  Desktop Safari fullscreen: show more of the picture
  by fitting the image to the viewport width (less cropping).
  If there’s unused vertical space, it will show as black (on-brand).
*/
@media (min-width: 992px){
  body::before{
    background-size: 100% auto;   /* shows more of the scene */
    background-position: 50% 10%;
  }
}

/* Sticky footer layout */
.page-wrap{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content{
  flex: 1;
}

/* ===== Brand helpers ===== */
.accent{ color: var(--accent); }
.white{ color: var(--white); }

/* ===== Navbar ===== */
.navbar{
  background: rgba(0,0,0,0.35) !important;
}

.navbar .nav-link,
.navbar .navbar-brand{
  color: rgba(255,255,255,0.92) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color: #00D75C !important;
}

.navbar .nav-item.active .nav-link,
.navbar .nav-link.active{
  color: #ffffff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* Burger icon visibility on dark nav */
.navbar-light .navbar-toggler{
  border-color: rgba(255,255,255,0.35) !important;
}
.navbar-light .navbar-toggler-icon{
  filter: invert(1);
}

/* Logo */
.Logo{
  height: 55px;
  width: auto;
  display: block;
}

/* ===== Hero ===== */
.hero{
  min-height: 52vh !important;
  padding: 18px 12px 18px !important;

  /* Increase gap between navbar and hero (desktop) */
  margin-top: 60px !important;

  margin-bottom: 0 !important;
}

.hero-inner{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.values{
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 14px 0;
  font-size: clamp(30px, 4.2vw, 56px);
}

.hero-tagline{
  margin: 0 0 8px 0;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.92);
}

.hero-services{
  margin: 0 0 18px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255,255,255,0.78);
}

.hero-cta{
  display: flex;
  justify-content: center;
}

/* Appointment button */
.btn.appoint{
  border: 2px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.95);
  padding: 12px 18px;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 22px);
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn.appoint:hover{
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

/* Controlled gap between hero and supporting line (desktop) */
.hero + .experiencewrapper{
  margin-top: 18px !important;
}

/* ===== Supporting line ===== */
.experiencewrapper{
  max-width: 980px;
  margin: 0 auto 28px;     /* ensures it doesn't “sink” into the footer */
  padding: 0 12px;
}

.experience{
  font-weight: 300;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 34px);
  color: rgba(255,255,255,0.92);
  text-align: center;
}

/* ===== Footer ===== */
.site-footer{
  margin-top: auto;
  background: rgba(0,0,0,0.55);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 14px 0;
}

#menuft{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

#menuft li{
  display: inline-block;
}

#menuft li a{
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  padding: 8px;
}

#menuft li a:hover{
  text-decoration: underline;
  color: var(--white);
}

.lift{
  color: rgba(255,255,255,0.45);
}

/* ===== Mobile tweaks ===== */
@media (max-width: 575.98px){
  .hero{
    min-height: 36vh !important;     /* a bit shorter so content sits higher */
    margin-top: 22px !important;     /* more space under navbar on mobile */
    padding: 14px 12px 12px !important;
  }

  /* Mobile gap between hero and experience: make it very small */
  .hero + .experiencewrapper{
    margin-top: 2px !important;      /* smaller than before */
  }

  /* Keep experience readable and clearly “in content”, not lost above footer */
  .experiencewrapper{
    margin-bottom: 22px;
  }

  /* Mobile background: keep cover so it doesn't letterbox */
  body::before{
    background-size: cover;
    background-position: 50% 14%;
  }
}