/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto Condensed', sans-serif; background: #000; color: #fff; }

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px; /* reduce top space */
  background: #000; /* keep dark header */
  position: fixed; /* make it stick like Levergy */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.logo-img {
  height: 90px; /* shrink logo if needed */
  width: 225px;
}
/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-links {
  display: flex;
  gap: 25px; /* spacing between nav links */
  align-content: center;
}
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials a {
  color: white;
  margin-left: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}
.socials a:hover {
  color: #f4c542; /* gold hover */
}
/* Push socials far to the right with a big gap */
.nav .socials {
  margin-left: 80px;  /* ✅ adjust this value for bigger or smaller gap */
  display: flex;
  gap: 15px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
.nav a.active { border-bottom: 2px solid #b39203; }

/* Dropdown desktop */
.nav-item { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  padding: 20px 0;
  min-width: 180px;
  z-index: 999;
}
.submenu a {
  display: block;
  padding: 14px 15px;
  color: #fff;
  text-decoration: none;
}
.submenu a:hover {
  background: #111;
}
.nav-item:hover .submenu {
  display: block;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
 .hero { 
  height:90vh; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  text-align:center; 
  background:url('hero-bg.jpg') no-repeat center/cover; 
  position:relative; 
} 
.hero-content { 
  position:relative; 
  z-index:2; 
  opacity:0; 
  transform:translateY(30px); 
  transition:1s ease-out;
 } 
 .hero-content.visible { 
  opacity:1; 
  transform:translateY(0);
 } 
 .hero h1 { 
  font-size:3.5rem; 
  text-transform:uppercase; 
  margin-top: 50px; 
  margin-bottom:25px; 
  transition:1s ease-out; 
}
/* ============================
   Section Base Styles
============================ */
section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: justify;
}

/* ============================
   Headings
============================ */
section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  margin: 10px 0;
  border-radius: 2px;
}

section h4 {
  font-size: 17px;
  font-weight: 200;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

/* ============================
   Paragraphs & Intro
============================ */
section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: justify;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  margin: 10px auto;
  border-radius: 2px;
}

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 60px;
  text-align: center;
}

/* Drop Cap */
.section p::first-letter {
  font-size: 2.8rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 8px;
  color: #b39203;
}

/* ============================
   Services Section
============================ */
.services {
  padding: 80px 50px;
  background: #000;
  color: #fff;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header h1 {
  font-size: 2.5rem;
  color: #b39203;
  margin-bottom: 16px;
}
.services-header p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* ============================
   Accordion Cards
============================ */
.service-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #222;
  transition: border 0.3s ease;
}
.service-card:hover {
  border: 1px solid #b39203;
}

.accordion {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  padding: 20px 30px;
  font-size: 1.5rem;
  font-weight: 550;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion:hover,
.accordion:focus {
  color: #b39203;
}

.arrow {
  font-size: 1.5rem;
  color: #b39203;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #111;
  padding: 0 25px;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.accordion-content ul {
  list-style: none;
  padding-left: 0;
}
.accordion-content ul li {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}
.accordion-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b39203;
}

/* Active State */
.service-card.active .accordion-content {
  max-height: 800px;
  padding: 20px 25px;
}
.service-card.active .arrow {
  transform: rotate(45deg);
}

/* ============================
   Responsive Adjustments
============================ */
@media (max-width: 768px) {
  section {
    padding: 50px 50px;
    padding-left: 20px;
  }
  .services {
    padding: 50px 20px;
  }
  .accordion {
    font-size: 1.2rem;
    padding: 15px 10px;
  }
}



.footer { background:#161616; color:#fff; padding:20px 60px 15px; font-family:'Roboto Condensed',sans-serif; }
.footer-container {
  display:grid; grid-template-columns:repeat(6,1fr); gap:40px; margin:0 auto 40px; max-width:1200px;
}
.footer-column h4 { font-size:15px; font-weight:700; text-transform:uppercase; margin-bottom:15px; text-align:left; }
.footer-column ul { list-style:none; padding:0; }
.footer-column ul li { margin-bottom:8px; text-align:left; }
.footer-column ul li a { color:#fff; font-size:14px; transition:0.3s; }
.footer-column ul li a:hover { color:#c4c4c4; }
.footer-column p { font-size:14px; line-height:1.6; text-align:left; }
.footer-bottom { border-top:1px solid #fff; padding-top:20px; display:flex; justify-content:center; font-size:12px; text-align:center; }
 
/* Responsive breakpoints for footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr); /* tablets: 3 cols */
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* small tablets: 2 cols */
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;           /* phones: 1 col */
    gap: 15px;
    text-align: center;
  }
  .footer-column h4,
  .footer-column ul li,
  .footer-column p {
    text-align: center;
  }
}
  /* Mobile nav */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav a, .submenu a {
    font-size: 18px;
    color: #fff;
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Dropdowns in mobile */
  .nav-item .submenu {
    position: relative;
    top: 0;
    left: 0;
    background: none;
    display: none;
    padding-left: 15px;
  }

  .nav-item.active .submenu {
    display: flex;
    flex-direction: column;
  }

  /* ✅ Fix socials: bottom-left inside nav */
  .socials {
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: flex;
    flex-direction: row; /* keep horizontal */
    gap: 20px;
  }

  /* Make hero and sections scroll nicely */
  section {
    padding: 100px 20px;
  }
}
 /* Hero */
.hero {
   height:90vh; 
   display:flex; 
   align-items:center; 
   justify-content:center; 
   text-align:center; 
   background:url('hero-bg.jpg') no-repeat center/cover; 
   position:relative; 
}
.hero-content { 
  position:relative; 
  z-index:2; 
  opacity:0; 
  transform:translateY(30px); 
  transition:1s ease-out; 
}

.hero-content.visible { 
  opacity:1; 
  transform:translateY(0); 
} 

.hero h1 { 
  font-size:3rem; 
  text-transform:uppercase; 
  margin-top: 70px;
  margin-bottom:20px; 
  transition:1s ease-out; 
  
}

  /* Make hero and sections scroll nicely */
  section {
    padding: 90px 20px;
  }
