/* === ROOT VARIABLES === */
:root {
  --primary-red: #dc3223;
  --primary-blue: #3117f4;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
}

/* === NAVBAR === */

.navbar {
  background-color: white;
  border-bottom: 1px solid #ddd;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

#book-now {
  background: var(--primary-red);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: bold;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-blue);
  cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  background-image: url("/images/backgorund-hero.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.hero-img {
  display: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 2rem;
  color: white;
  text-align: left;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 60%;
  max-width: 700px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 64px);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: clamp(1rem, 1.5vw, 20px);
  margin-bottom: 2rem;
}

.cta-button {
  margin: 0.5rem;
  text-decoration: none;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  color: white;
}

.cta-button.red {
  background-color: var(--primary-red);
}
.cta-button.blue {
  background-color: var(--primary-blue);
}

.hero-logo {
  flex: 1 1 40%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* === SERVICES & FEATURES === */
.services,
.features {
  padding: 4rem 2rem;
  padding-bottom: 10rem;
  background-color: #f0f0f0;
  text-align: center;
}

.services h2 {
  font-size: 4.5rem;
}
.features h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

.service-cards,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

.learn-more {
  display: inline-block;
  background-color: #e3e3e3;
  padding: 10px 16px;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  margin-top: 1rem;
}

/* === APP PROMO === */
.app-promo {
  padding: 4rem 2rem;
  background-color: #fff;
}

.app-promo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-phone {
  flex: 1;
  max-width: 300px;
  height: auto;
  display: none;
}

.app-center {
  flex: 2;
  text-align: center;
}

.app-center h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.app-center p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.app-download-buttons img {
  height: 50px;
  margin: 0 0.5rem;
}

/* === FEATURES === */
.feature {
  text-align: center;
}

.feature i {
  font-size: 30px;
  background-color: var(--primary-blue);
  color: white;
  padding: 2rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 2rem;
}

/* === FOOTER === */
.footer {
  background-color: #141826;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer a,
.footer p {
  color: #d1d5db;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer a:hover {
  text-decoration: underline;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #aaa;
}

/* === SCROLLING BANNER === */
.scrolling-banner {
  background-color: var(--primary-red);
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
}

.scrolling-banner:hover .scrolling-text {
  animation-play-state: paused;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1150px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-bottom: 20px;
  }

  .nav-links a {
    padding: 20px;
  }

  .nav-links a:hover {
    color: var(--primary-blue);
  }

  .nav-links.active {
    display: flex;
  }
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
  .app-phone {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1,
  .hero-text p {
    text-align: center;
  }

  .hero-logo {
    display: none;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .hero-text h1 {
    text-align: center;
  }

  .hero-text p {
    text-align: center;
  }
}
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  border-bottom: 1px solid #ddd;
}

.book-now-button {
  cursor: pointer;
}
