
/* General style */

:root {
    --bs-primary: #1F2A44;      /* Midnight Blue */
    --bs-secondary: #F29C1F;    /* Safety Orange */
    --bs-light: #F7F7F7;        /* Light Background */
    --bs-dark: #333333;         /* Charcoal Text */
    --bs-body-bg: #ffffff;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}


footer {
  flex-shrink: 0;
}


body {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--bs-body-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

small {
  font-size: 0.875rem;
  color: #888;
}

  /* Buttons */

button, .btn, nav a {
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* Hero Section */

.hero-section {
  position: relative;
  height: 100vh;
  background-image: url('/static/img/house_camera.png'); /* adjust path as needed */
  background-size: cover;
  background-position: center;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Darkness level */
  z-index: 0;
}

/* Make sure content appears above the overlay */
.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  padding: 2rem;
  border-radius: 8px;
}

.hero-section h1 {
  font-size: 3rem;
}
  
.hero-section p {
  font-size: 1.1rem;
}


 
  /* Navbar */


.navbar {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #000 !important;
}
  
.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
  color: #425559 !important; /* optional: dark gray on hover */
} 

  
/* Cards */

.card-service {
  background-color: transparent;
}

.card-service img {
  width: 80px;
}

  
.cards-title {
    color: var(--bs-primary);
}
  




/* Contact */
.form-control,
.form-select {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  color: #000;
  padding: 0.75rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Inner shadow */
  transition: all 0.2s ease-in-out;
  font-weight: 300;
  font-style: italic; 
}

.form-control::placeholder,
.form-select::placeholder {
  color: #666;
}

/* Optional: subtle highlight on focus */
.form-control:focus,
.form-select:focus {
  background-color: #eaeaea;
  border-color: #999;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}


a.quote-anch {
  color: black;
  text-decoration: underline #333333;
}

a.quote-anch:hover {
  color: var(--bs-secondary);
  text-decoration: underline var(--bs-secondary);
}

#gallery .col {
  padding: 2px;
}

.gallery-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-item {
  transition: all 0.2s smooth;
}

.slide img {
  object-fit: contain;
  height: 50rem;
  padding: 4px;
}


  /* Footer */
footer {
  background-color: var(--bs-dark);
  color: var(--bs-light);
  padding: 1rem;
  text-align: center;
  height: 20vh;
}
  


/* Service pages */

.service-hero-section {
  background: center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
  
.service-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
  
.service-hero-section .container {
  position: relative;
  z-index: 1;
}

.service-hero-section h1, .service-hero-section p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.fullscreen-section {
  min-height: 100vh;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-content: center;
}
  



/* ===================== */
/* ≤ 1200px (Large screens) */
/* ===================== */
@media (max-width: 1200px) {
  .slide img {
    height: 40rem;
  }

  .card-service img {
    width: 70px;
  }
}

/* ===================== */
/* ≤ 992px (Medium screens / Tablets) */
/* ===================== */
@media (max-width: 992px) {
  .slide img {
    height: 35rem;
  }

  .gallery-img {
    height: 400px;
  }

  .fullscreen-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .card-service {
    padding: 2rem 1.5rem;
  }

  .card-service img {
    width: 65px;
  }

  .cards-title {
    font-size: 1.25rem;
  }

  .card-service p {
    font-size: 0.95rem;
  }
}

/* ===================== */
/* ≤ 768px (Small tablets / large phones) */
/* ===================== */
@media (max-width: 768px) {
  /* Carousel */
  .slide img {
    height: 28rem;
  }

  .gallery-img {
    height: 300px;
  }

  .carousel-inner {
    border-radius: 8px;
    overflow: hidden;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  /* Services */
  .fullscreen-section {
    padding: 2rem 1rem;
  }

  .card-service {
    padding: 1.5rem 1rem;
  }

  .card-service img {
    width: 60px;
  }

  .cards-title {
    font-size: 1.1rem;
  }

  .card-service p {
    font-size: 0.9rem;
  }

  /* Section padding */
  /* .info-bottem {
    padding-top: 3.3rem;
  } */

  .gal {
    padding-top: 4rem !important;
  }

  .col-md-10 {
    max-width: 100%;
  }
}

/* ===================== */
/* ≤ 576px (Phones) */
/* ===================== */
@media (max-width: 576px) {
  /* Forms */
  .fullscreen-section .form-wrapper {
    width: 100%;
    margin: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 100dvh;
  }

  .form-control,
  .form-select {
    font-size: 1rem;
    padding: 0.75rem;
  }

  form .row {
    flex-direction: column;
  }

  .form-control::placeholder,
  .form-select::placeholder {
    font-size: 1rem;
  }

  .form-control-lg,
  .form-select-lg {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  button[type="submit"],
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p,
  .lead {
    font-size: 0.95rem;
  }

  /* Navbar */
  .navbar .navbar-brand {
    font-size: 1rem;
    line-height: 1.2;
  }

  .navbar .nav-link {
    font-size: 0.9rem;
  }

  /* Services */
  .card-service {
    padding: 1rem;
    text-align: center;
  }

  .card-service img {
    width: 60px;
    margin: 0 auto;
  }

  .cards-title {
    font-size: 1.2rem;
  }

  .card-service p {
    font-size: 0.85rem;
  }

  #services .row > .col-6:nth-child(odd):last-child {
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  footer {
    height: auto;
    padding: 2rem 1rem;
  }

  /* Carousel */
  .carousel-inner img {
    height: 200px;
  }

  .slide img {
    height: 18rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 1.5rem 1.5rem;
    width: 2rem;
    height: 2rem;
  }

  .carousel-indicators {
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
  }

  .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
  }

  /* Columns */
  .row .col-md-6,
  .row .col-7,
  .row .col {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Hero Section */
  .hero-section {
    height: 70vh;
    background-position: top center;
    padding: 2rem 1rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  /* Service Hero */
  .service-hero-section {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .service-hero-section h1 {
    font-size: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  }

  .service-hero-section p {
    font-size: 1rem;
  }

  /* Additional sections */
  .info-bottem {
    padding-top: 2rem;
  }

  #contact .row.px-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #contact .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  form {
    padding: 0 1rem; /* slight inner padding for breathing room */
    max-width: 95%;
    max-height: 85%;
    margin: auto;
  }

  .gal,
  .contact {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 3.3rem;
  }

  .container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .row.align-items-center {
    flex-direction: column;
  }

  .row.align-items-center .col-md-6, .col-md-10 {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .row.align-items-center ul {
    padding-left: 1.25rem;
    text-align: left;
  }
}
