* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', 'Lato', sans-serif;
  color: #fff;
}

/* ------------------------------
   HOMEPAGE STYLES
------------------------------ */

/* Background Image and Overlay */
.hero {
  position: relative;
  background: url('backround.jpg') center center / cover no-repeat;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Header with solid black bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 25px;
  z-index: 1000;
}

/* Inner container for hamburger + logo */
.header-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo beside hamburger */
.logo {
  height: 50px;
  width: auto;
  display: block;
}

/* Hamburger Menu (aligned left of logo) */
.hamburger {
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Dropdown Menu */
.menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 65px;
  left: 25px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 12px 25px;
  border-radius: 8px;
  text-align: left;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1100;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ccc;
}

.show {
  display: flex;
}

/* Center Text Content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.phone {
  font-size: 1.9rem;
  margin-top: 10px;
  font-weight: 500;
}

/* Homepage Footer */
footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
  header {
    padding: 0 15px;
  }

  .logo {
    height: 38px;
  }

  .hamburger {
    font-size: 28px;
  }

  .menu {
    top: 60px;
    left: 15px;
    min-width: 160px;
    padding: 8px 15px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: left;
  }

  .menu a {
    font-size: 0.95rem;
    padding: 6px 0;
  }

  .content h1 {
    font-size: 1.9rem;
  }

  .phone {
    font-size: 1.1rem;
  }

  footer {
    font-size: 0.8rem;
  }
}

/* Keep phone number white on mobile */
.phone, .phone a, a[href^="tel"] {
  color: #fff !important;
  text-decoration: none;
}

/* ------------------------------
   SECONDARY PAGE STYLES
   (User Agreement / Privacy Policy)
------------------------------ */

.page-container {
  min-height: 100vh;
  background-color: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* Header for static pages (black bar with left-aligned menu + logo) */
.static-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #000;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1000;
}

.static-header .header-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Match logo sizing with homepage */
.logo-small {
  height: 50px;
  width: auto;
  display: block;
}

/* Hamburger Menu (left of logo) */
.static-header .hamburger {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown Menu for static pages */
.page-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 65px;
  left: 25px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 10px 20px;
  border-radius: 8px;
  text-align: left;
  min-width: 180px;
  z-index: 1100;
}

.page-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
}

.page-menu a:hover {
  color: #ccc;
}

.show-page-menu {
  display: flex;
}

/* Page content area */
.page-content {
  flex: 1;
  max-width: 900px;
  margin: 100px auto 0;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  text-align: center;
}

.page-content h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-content p,
.page-content ul li {
  font-size: 1.05rem;
  font-weight: 400;
}

.page-content ul {
  margin-left: 20px;
  margin-top: 10px;
  list-style-type: disc;
}

/* Static footer (fixed overlap issue) */
.static-footer {
  position: relative;
  text-align: center;
  padding: 25px 0 15px;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Responsive for static pages */
@media (max-width: 768px) {
  .logo-small {
    height: 38px;
  }

  .static-header .hamburger {
    font-size: 26px;
  }

  .page-menu {
    top: 60px;
    left: 15px;
    min-width: 150px;
  }

  .page-menu a {
    font-size: 0.9rem;
  }

  .page-content {
    font-size: 1rem;
    line-height: 1.7;
    padding: 30px 18px;
  }

  .page-content h1 {
    font-size: 2rem;
  }

  .page-content h2 {
    font-size: 1.4rem;
  }

  .page-content h3 {
    font-size: 1.15rem;
  }
}
/* ------------------------------ 
   CONTACT PAGE FORM (Modern Look)
------------------------------ */

.contact-info a,
.optin-section a {
  color: #fff;
  text-decoration: underline;
}

.contact-info a:hover,
.optin-section a:hover {
  color: #ccc;
}

.optin-section form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
  align-items: flex-start;
  font-family: 'Poppins', 'Lato', sans-serif;
}

.optin-section label {
  font-weight: 100;
  font-size: 0.95rem;
  margin-bottom: 4px;
  display: block;
  color: #fff;
}

.optin-section input[type="text"],
.optin-section input[type="tel"],
.optin-section input[type="email"] {
  width: 50%;
  max-width: 400px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: 'Poppins', 'Lato', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.optin-section input::placeholder {
  color: #bbb;
}

.optin-section input:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.25);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ddd; /* slightly lighter for readability */
  font-weight: 300;
  font-family: 'Poppins', 'Lato', sans-serif;
  max-width: 600px;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 5px;
}

.optin-section button {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 50%;
  max-width: 400px;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Poppins', 'Lato', sans-serif;
}

.optin-section button:hover {
  background-color: #ddd;
}

.form-message {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .optin-section input[type="text"],
  .optin-section input[type="tel"],
  .optin-section input[type="email"],
  .optin-section button {
    width: 100%;
    max-width: 100%;
  }

  .checkbox-container {
    max-width: 100%;
  }
}


