/* 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: #fffffffa;
  padding: 0.7rem 1rem;
  font-family: 'Times New Roman', Times, serif;
  z-index: 1000; /* 👈 keeps navbar on top */
}

/* Container */
.navbar-container {
  display: flex;
  align-items: center;

  max-width: 1200px;
  margin: 0 auto;
}

/* ============================= */
/* BRAND */
/* ============================= */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  width: 100px;
  height: 50px;
  object-fit: fill;
}

/* ============================= */
/* NAV LINKS */
/* ============================= */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  list-style: none;
  margin-left: 4rem;
  padding: 0;
}

.navbar-links li {
  position: relative;
}

.navbar-links a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #1F2D3D;
  padding: 0.5rem 0.7rem;
  display: block;
  transition: all 0.2s ease;
}

.navbar-links a:hover {
  color: #1BA39C;
  transform: translateY(-2px);
}

/* ============================= */
/* CALENDAR BUTTON */
/* ============================= */
.bi-calendar3 {
    color: white;
}
.signup-nav-btn {
  background: #1BA39C;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 25px;
  margin-left: 4rem;
  transition: all 0.2s ease;
}

.signup-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #1ba39ccf;
}

/* ============================= */
/* DROPDOWN */
/* ============================= */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;

  background: #1BA39C;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  border-radius: 8px;
}

.dropdown-menu li a {
  padding: 0.5rem 1rem;
  color: #fff;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  color: #000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}

/* ============================= */
/* HAMBURGER */
/* ============================= */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: #1BA39C;
  display: block;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 991px) {
  .navbar {
    position: relative;
  }

  .navbar-toggle {
    display: flex;
    margin-left: auto;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: #fff;
    padding: 0.8rem 0;
    margin: 0;

    z-index: 1000;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
  }

  .navbar-links a {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .signup-nav-btn {
    margin-left: 0;
    border-radius: 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    border-radius: 0;
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 0.75rem 1rem;
  }
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (min-width: 768px) {
  .navbar-logo {
    width: 90px;
    height: 55px;
  }
}

/* ============================= */
/* DESKTOP */
/* ============================= */
@media (min-width: 992px) {
  .navbar-logo {
    width: 110px;
    height: 80px;
  }

  .navbar-links a {
    font-size: 18px;
  }
}

/* ============================= */
/* SMALL PHONES */
/* ============================= */
@media (max-width: 375px) {
  .navbar-logo {
    width: 42px;
  }
}



/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    background: linear-gradient(
        135deg,
        #199b94 0%,
        #1BA39C 50%,
        #168c86 100%
    );

    color: white;

    padding-top: 2rem;
}

/* ============================= */
/* FOOTER CONTAINER */
/* ============================= */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    padding: 0 2rem 1.5rem;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;

    flex-wrap: wrap;
}

.footer-column {
    min-width: 200px;
}

/* ============================= */
/* LOGO */
/* ============================= */

.footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-text {
    max-width: 260px;

    margin-bottom: 1rem;

    color: rgba(255,255,255,0.9);

    line-height: 1.8;
    font-size: 1rem;
}

/* ============================= */
/* SOCIALS */
/* ============================= */

.footer-socials a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.14);

    color: white;

    text-decoration: none;

    font-size: 1rem;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: rgba(255,255,255,0.25);

    transform: translateY(-3px);
}

/* ============================= */
/* TITLES */
/* ============================= */

.footer-column h3 {
    font-size: 1.5rem;

    margin-bottom: 1rem;

    font-family: 'Times New Roman', serif;
}

/* ============================= */
/* LINKS */
/* ============================= */

.footer-links,
.footer-contact {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.9);

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;

    padding-left: 5px;
}

/* ============================= */
/* CONTACT */
/* ============================= */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;

    color: rgba(255,255,255,0.9);

    line-height: 1.7;
}

.footer-contact i {
    margin-top: 4px;

    color: #eaf5ea;
}

/* ============================= */
/* FOOTER BOTTOM */
/* ============================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);

    max-width: 1200px;
    margin: 0 auto;

    padding: 1rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: rgba(255,255,255,0.8);

    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .footer-container {
        justify-content: flex-start;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;

        text-align: center;
    }
}

@media (max-width: 600px) {

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        width: 100%;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}