/* Make sure the footer stays at the bottom of the viewport */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full screen height */
}

/* Whatever wraps your main content */
main {
  flex: 1; /* pushes the footer down */
}

/* ============================= */
/* STOP WHITE SPACE ON ROTATION */
/* ============================= */

/* 1) Lock the page to the viewport and prevent horizontal overflow */
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ============================= */
/* FULL-WIDTH SECTIONS */
/* ============================= */
section {
  width: 100%;
  margin: 0;
}



/* ============================= */
/* SOCIAL SECTION */
/* ============================= */
/* Top right position */
.social-icons {
    position: absolute; /* change to fixed if you want it to stay while scrolling */
    top: 25px;
    right: 25px;
    display: flex;
    gap: 20px;
}

.social-icons {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: 0.3s ease;
}

.social-icons i {
    font-size: 20px;
}

.social-icons img {
    width: 70%;
    height: auto;
    display: block;
}

.social-icons a:hover {
    background: white;
    color: black;
}

/* ============================= */
/* TABLET */
@media (max-width: 992px) {
  .social-icons {
    top: 20px;
    right: 20px;
    gap: 12px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }

  .social-icons i {
    font-size: 18px;
  }
}

/* ============================= */
/* MOBILE */
@media (max-width: 576px) {
  .social-icons {
    top: 15px;
    right: 15px;
    gap: 10px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .social-icons i {
    font-size: 16px;
  }
}



/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
  background-color: #000000fa;
  font-family: 'Times New Roman', Times, serif;
  padding: 1rem 1rem;

  position: relative;       /* 🔥 anchor for dropdown */
  z-index: 1000;            /* 🔥 always above hero */
}

.navbar-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
}

/* ============================= */
/* BRAND */
/* ============================= */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 0;
}

.navbar-logo {
  width: 48px;
  height: auto;
}

.brand-text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================= */
/* NAV LINKS */
/* ============================= */
.navbar-links {
  display: flex;
  list-style: none;
  margin-left: auto;
  padding: 0;

  margin-left:auto; /* pushes links to the right */
}

.navbar-links li {
  position: relative;
}

.navbar-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  padding: 0.5rem 1rem;
  display: block;
}

.navbar-links a:hover {
  font-weight: 600;
}

/* ============================= */
/* DROPDOWN */
/* ============================= */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  background: #000;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
}

.dropdown-menu li a {
  padding: 0.5rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #fff;
  color: #000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}

/* ============================= */
/* HAMBURGER */
/* ============================= */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 991px) {

  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    flex-direction: column;

    background: rgba(0, 0, 0, 0.95);  /* 🔥 visible background */
    backdrop-filter: blur(6px);

    display: none;

    z-index: 999; /* 🔥 above hero */
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links li {
    text-align: center;
  }

  .navbar-links a {
    padding: 0.75rem 0;
  }

  .dropdown-menu {
    position: static;
  }
}



/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  margin-top: auto; /* ensures footer is at the bottom */
  background-color: #000;
  font-family: 'Times New Roman', Times, serif;
  color: #fff;
}

/* ============================= */
/* FOOTER MAIN BAR */
/* ============================= */
.footer {
  padding: 2rem 1rem;
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width:100%;  
  margin: 0 auto;
  max-width: 1200px;
}

/* ============================= */
/* FOOTER LOGO / ADDRESS */
/* ============================= */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.4;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

/* ============================= */
/* FOOTER NAV LINKS */
/* ============================= */
.footer-foot {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item {
  list-style: none;
}

.footer-link {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-link:hover {
  font-weight: 600;
}
/* ============================= */
/* POLICIES */
/* ============================= */
.policies {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  margin: 0;
}

.policy_text {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
}

.policy_text:hover {
  text-decoration: underline;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-foot {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }
}