/* Global Styles */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
 header {
  position: fixed;
  top: 0px;
  left: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(0, 0, 0);
  color: #f45a17;
  width: 100%;
  z-index: 1000 ;
}
/* Mobile header text size fix */
@media (max-width: 480px) {
  .logo-text-logo {
    font-size: 22px !important; /* adjust as needed */
    white-space: nowrap;
  }
}

header .logo-text-logo {
  font-family: Arial, Helvetica, sans-serif; /* same as site */
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color:  #ffffff;          /* brand color */
  background: none;
  border: none;

  /* padding: 10px 0px 10px 20px;
   */
  /* margin-right: 30px; */
  display: inline-block;
  margin-right: auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  margin-left: 40px; /* ← MOVE RIGHT */

}


.logo-text-logo {
  font-size: clamp(28px, 4vw, 54px); /* ✅ Responsive scaling */
  white-space: nowrap;               /* ✅ Never wraps */
}

.top-bar {
  position: fixed;      
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #000000;
  /* box-shadow: -2 4px 10px rgba(0,0,0,0.3);*/
  color: #f45a17;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  z-index: 1000;
  font-size: 0;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 2px solid #f45a17;
}
.header-cta a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  left:auto 
}
/* Toggle button */
.menu-toggle {
  position: fixed;
  top: 18px;
  left: 20px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #f45a17;
  z-index: 1001;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100vh;
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 60px 50px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1000;
}

.sidebar.active {
  transform: translateX(0);
}

/* Brand */
.sidebar-brand {
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 60px;
  font-weight: 600;
  color: #f45a17;
}

/* Menu */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 28px;
}

.sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 3px;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.sidebar a:hover {
  color: #f45a17;
  opacity: 1;
}
/* Mobile sidebar width fix */
@media (max-width: 480px) {
  .sidebar {
    width: 70% !important;   /* or 65% or 60%, whatever you want */
  }
}

/* Active page */
.sidebar a.active {
  color:#f45a17
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body {
  
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000;
  /* background-image: url('../images/background.png'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #f2f2f2;
  margin: 0;
  padding-top : 060px; /* SAME AS .top-bar HEIGHT */
  opacity: 1;
  transition: opacity 1s ease;
}
body {
  padding-bottom: 120px; /* MUST be taller than #book-button */
}
@media (max-width: 480px) {
  .menu-toggle {
    font-size: 26px; 
    top: 10px;
    left: 10px;
    z-index: 9999;
  }
}


.menu-toggle {
  position: fixed;
  top: 5px;
  right: 24px;       /* moved to the RIGHT */
  left: auto;
  font-size: 28px;
  background: none;
  border: none;
  cursor: auto;
  color: #f45a17;    /* brand accent */
  z-index: 1005;     /* above the sidebar (1000) */
  padding: 6px;
}

/* Button visual focus accessibility */
.menu-toggle:focus {
  outline: 2px solid rgba(255,106,19,0.25);
  outline-offset: 4px;
}

/* Sidebar visible by default */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 70px 60px;
  transform: translateX(0);            /* visible */
  transition: transform 0.33s ease;
  z-index: 1000;
}

/* When collapsed, move off-screen to the right */
.sidebar.collapsed {
  transform: translateX(100%);
}


body.fade-in {
  opacity: 0;
}

body.loaded {
  opacity: 1;
}
body {
  padding-top: 60px; /* SAME AS .top-bar HEIGHT */
}

/* Fonts */
.font-helvetica {
  font-family:  Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Main Content */
.container {
  text-align: center;
  padding: 80px 20px;

  margin-top: 0;      /* remove extra top margin */
  padding-top: 20px;  /* optional extra spacing below header */

  
}

.logo {
  max-width: 180px;
  /* margin-bottom: 20px; */
  position: center;

}



/* Headings and Text */
h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -1.5px;
}


h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #dddddd;
}

p {
  font-size: 20px;
  color: #cccccc;
  max-width: 700px;
  margin:  auto;
}

/* Inquiry Form Styles */
form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: left;
  margin-bottom: 160px;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f45a17; /* UPDATED ORANGE */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #c43d26; /* UPDATED ORANGE */
  transform: scale(1.05);
}
/* Bottom bar container */
#book-button {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Button itself */
#book-button a {
  display: inline-block;
  width: 75%;
  max-width: 600px;
  text-align: center;
  padding: 16px 24px;
  background-color: #f45a17; /* UPDATED ORANGE */
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#book-button a:hover {
  background-color: #f45a17; /* UPDATED ORANGE */
  transform: scale(1.05);
}

.pricing-info {
  color: #fff;
  
  text-align: center;
}

footer.footer {
    margin: 0;
    background-color: #111;
    color: #f45a17;
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif
}
footer.footer p {
    font-size: 14px;
    text-align: center;
}