@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0A192F;
  --secondary: #112240;
  --accent: #787f58;
  --extra-sec: #154b0b;
  --accent-soft: rgba(100, 255, 218, 0.1);
  --text-main: #CCD6F6;
  --text-muted: #8892B0;
  --white: #FFFFFF;
  --bg-dark: #e2d4b9;
  --bg-card: #637404;
  --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  --container-max-width: 1200px;
}
/* :root {
  --primary: #154b0b;   /* Deep Navy */
  /* --secondary: #637404; Olive Green
  --accent: #787f58;    Soft Coral */
  /* --background: #e2d4b9;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF; */

/* Base Styles (Mobile First) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base Header & Navigation (Mobile) */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo img {
  height: 80px;
  width: auto;
}

.hamburger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--accent);
  font-size: 1.5rem;
  z-index: 1002;
}

#menu-toggle {
  display: none;
}

.nav-menu {
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--secondary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: var(--transition);
  display: flex;
  z-index: 999;
}

#menu-toggle:checked~.nav-menu {
  left: 0;
}

.nav-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  font-family: 'syne';
}

/* Mobile Icons for toggle */
.hamburger .fa-bars {
  display: inline-block;
}

.hamburger .fa-xmark {
  display: none;
}

/* Use general-sibling to be robust if markup spacing changes */
#menu-toggle:checked ~ .hamburger .fa-bars {
  display: none;
}

#menu-toggle:checked ~ .hamburger .fa-xmark {
  display: inline-block;
}

/* Base Hero Section (Mobile) */
.hero-section {
  min-height: 100vh;
  padding: 100px 1.5rem 60px;
  background: linear-gradient(rgba(8, 9, 10, 0.8), rgba(10, 25, 47, 0.8)),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  background-attachment: fixed;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'bebas';
}   

.hero-content p {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.CTA {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.CTA a {
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-btn {
  background: var(--accent);
  color: var(--white);
}

.secondary-btn {
  border: 1px solid var(--accent);
  color: var(--white);
}

/* Base Services Section (Mobile) */
.service-section {
  padding: 80px 1.5rem;
}

.service-section h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
  color: var(--extra-sec)
}

.service-section h1::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto;
}

.service-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-box {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(100, 255, 218, 0.1);
  text-align: center;
  transition: var(--transition);
}

.service-box:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-box p {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-box a {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'syne';
  border: 1px solid white;
  padding: 10px;
  border-radius: 25px;
}

/* Base About Section (Mobile) */
.about-section {
  padding: 80px 1.5rem;
  background: var(--bg-card);
  margin-bottom: 80px;

}

.about-header h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.about-box {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}

.about-box video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-content p {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.about-content a {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--accent);
  color: var(--white);
  border-radius: 4px;
  font-family: 'syne';
}
.contact-section {
  padding: 80px;
  /* background: var(--text-main); */
}
.contact-section h1{
  text-align: center;
  color: #154b0b;
  margin-top: 2rem;
}
.contact-section p{
  text-align: center;
  color: #637404;
  margin-bottom: 2rem;
}
.contact-section a{
  margin: 35%;
  text-align: center;
  color: var(--extra-sec);
  font-size: 1.4rem;
}
.location-map {
  padding: 80px 1.5rem;
  text-align: center;
  background: var(--text-main);
}
.map-container h1{
  color: #154b0b;
}


/* Base Footer (Mobile) */
footer {
  padding: 3rem 1.5rem;
  background: var(--bg-card);
  text-align: center;
}

/* ────────────────────────────────
   RESPONSIVE ENHANCEMENTS (min-width)
───────────────────────────────── */

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
  nav {
    height: 80px;
    padding: 0 3rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .logo img {
    height: 130px;
    border-radius: 30px;
  }

  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 2rem;
  }

  .nav-menu a {
    font-size: 0.85rem;
    color: var(--extra-sec);
  }

  .hero-section {
    background-image: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)),
      url('../images/hero.jpg');
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .CTA {
    flex-direction: row;
    justify-content: center;
  }

  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-box {
    flex-direction: row;
    align-items: center;
    text-align: left;
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .about-box video {
    width: 50%;
  }

  .about-content {
    width: 50%;
  }
  .contact-section a{
    padding-left: 12rem;
  }
}

/* Large Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 5rem;
  }

  .service-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-section,
  .about-section {
    padding: 120px 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .logo img {
    height: 120px;
  }
 .contact-section a{
  margin-left: 6 rem;
 }
}

/* Small mobile tweak: ensure hero title sits below fixed header on very small screens */
@media (max-width: 320px) {
  .hero-section {
    padding: 140px 1.5rem 60px;
  }

  .hero-content h1 {
    margin-top: 0.5rem;
    font-size: 2.2rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-section a{
  margin: 8%;
}