/* 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);
}

.map {
  width: 100%;
  height: 100vh; /* Full screen */
  margin-top: 90px; /* Push down so header doesn’t overlap */
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Page */
.contact-section {
  background: #000;
  color: #fff;
  padding: 40px 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-container .map {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.contact-container .map img,
.contact-container .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-link {
  font-weight: bold;
  text-decoration: underline;
  margin-right: 15px;
}

/* =========================
   FOOTER
========================= */
.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: repeat(2, 1fr);           /* phones: 1 col */
    gap: 15px;
    text-align: center;
  }
  .footer-column h4,
  .footer-column ul li,
  .footer-column p {
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 300px;
  }
}

/* Hide nav by default on small screens */
@media (max-width: 768px) {
  .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;
  }
}

/* === Responsive Footer === */
@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;
  }
}

