/* 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:#fffffffa;
  padding:0.75rem 1rem;
  font-family: 'Times New Roman', Times, serif;
  justify-content: center;
}

.navbar-container{
  display:flex;
  align-items:center;
  width:100%;   
  max-width: 1200px;
}

/* ============================= */
/* BRAND */
/* ============================= */
.navbar-brand{
  display:flex;
  align-items:center;
  gap:0.3rem;
  text-decoration:none;
  min-width:0;
}

.navbar-logo{
  width:30px;
  height:auto;
}

/* ============================= */
/* NAV LINKS */
/* ============================= */
.navbar-links{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;

  margin-left:auto; /* pushes links to the right */
}

.navbar-links li {
  position:relative;
}

.navbar-links a {
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  color:#000000;
  padding:0.6rem 0.8rem;
  display:block;
}

.navbar-links a:hover {
  color: #ff6aa2;
  transform: translateY(-2px);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Special button */
.signup-nav-btn {
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.signup-nav-btn:hover {
  transform: translateY(-2px);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
/* ============================= */
/* DROPDOWN */
/* ============================= */
.dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  list-style:none;
  padding:0.5rem 0;
  min-width:200px;
}

.dropdown-menu li a{
  padding:0.5rem 1rem;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-menu li a{
  padding:0.5rem 1rem;
  transition:background 0.2s ease, color 0.2s ease;
  color: #ffffff;
}

.dropdown-menu li a:hover{
  color:#000000;
}

/* ============================= */
/* 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: linear-gradient(45deg, #7b5cff, #ff6aa2);
  display:block;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width:991px){

  .navbar-toggle{
    display:flex;
  }

  .navbar-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    display:none;
    background-color: #ffffff;
  }

  .navbar-links li{
    text-align:center;
  }

  .navbar-links a{
    padding:0.75rem 0;
  }

  .navbar-links.active{
    display:flex;
  }

  .dropdown-menu{
    position:static;
  }

}

/* ============================= */
/* TABLET */
/* ============================= */
@media (min-width:768px){

  .brand-text{
    font-size:22px;
  }

  .navbar-logo{
    width:56px;
  }

}

/* ============================= */
/* DESKTOP */
/* ============================= */
@media (min-width:992px){

  .brand-text{
    font-size:26px;
    letter-spacing:1.5px;
  }

  .navbar-logo{
    width:70px;
  }

  .navbar-links a{
    font-size:18px;
  }

}

/* ============================= */
/* SMALL PHONES */
/* ============================= */
@media (max-width:375px){

  .brand-text{
    font-size:18px;
  }

  .navbar-logo{
    width:42px;
  }

}



/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  margin-top: auto; /* ensures footer is at the bottom */
  background-color: #ffffff;
  color: #000000;
  font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* 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: #000000;
}

.footer-link:hover {
  color: #ff6aa2;
  transform: translateY(-2px);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
/* ============================= */
/* 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;
  letter-spacing: 1px;
  color: #000;
}

.policy_text:hover {
  font-weight: 600;
}

/* ============================= */
/* 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;
  }
}