*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.hero{
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-video{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

nav{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*logo*/
nav .logo{
  width: 80px;
  position: fixed;
  right: auto;/*fixed logo stays*/
  top: 20px;
}
/*home menu about us  contact us*/
nav ul li{
  list-style: none;
  display: inline-block;
  margin-left: 40px;
}
/*size of home menu ...*/
nav ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 17px; 
}

.content{
  text-align: center;
}
/*size of san jose ca */
.content h1{
  font-size: clamp(40px, 12vw, 160px);
  color: #fff;
  font-weight: 600;
}
/*explore box*/
.content a{
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  border: 2px solid #fff;
  padding: 14px 70px;
  border-radius: 50px;
  margin-top: 20px
}

html {
  scroll-behavior: smooth;
}

section::not(#home) {
    padding: 80px 20px;
    background: white;
    color: black;
}
/*about us contact us*/
section h2{
    font-size: 40px;
    margin-bottom: 10px;
    color: black;
}
/*info of the about us...*/
section p{
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
}

/* ✅ Slide-down Menu (iPhone Style) */
.control-menu {
    position: fixed;
    top: -700px; /* Hidden */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 20px;
    transition: top 0.4s ease;
    z-index: 999;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.control-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.control-menu ul li {
    margin: 12px 0;
}

.control-menu a {
    color: black;
    text-decoration: none;
    font-size: 22px;
}

.control-about {
  position: fixed;
    top: -700px; /* Hidden */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 20px;
    transition: top 0.4s ease;
    z-index: 999;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* ✅ Toggle button */
.toggle-btn {
    position: fixed;
    right: 20px;
    top: 80px;
    background: rgba(255,255,255,0.85);
    border: none;
    padding: 10px 23px;
    border-radius: 10px;
    font-size: 26px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.menu-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 10px 0 20px;
  border-radius: 12px;
}

.toggle-btn-home {
  position: fixed;
  right: 20px;
  top: 20px; /* hidden */
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  padding: 10px 23px;
  transition: top 0.4s ease;
  z-index: 1000;
  font-size: 26px;
  cursor: pointer;
}

.toggle-about {
  position: fixed;
  right: 20px;
  top: 140px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  transition: top 0.4s ease;
  z-index: 1000;
  font-size: 26px;
  cursor: pointer;
}



