/* Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

/* Logo */
.logo-block {
display: flex;
align-items: center;
gap: 8px;
font-size: 1.25rem;
font-weight: bold;
text-decoration: none;
color: #000;
}

.logo-block img {
height: 24px;
width: auto;
display: inline-block;
}

/* Navigation */
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: rgba(255, 255, 255, 0.9);
position: sticky;
top: 0;
z-index: 1000;
}

.nav-links a {
margin-left: 1.5rem;
text-decoration: none;
color: #333;
font-weight: 600;
transition: color 0.3s ease;
}

.nav-links a:hover {
color: #0077cc;
}

.hamburger {
display: none;
font-size: 2rem;
cursor: pointer;
color: #ff6600;
}

.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
width: 100%;
background: url('background-compressed.jpg') no-repeat center center/cover;
background-attachment: scroll; /* ensures mobile compatibility */
}

.hero-content h1 {
font-size: 3rem;
color: #fff;
}

.hero-content p {
font-size: 1.5rem;
color: #eee;
margin-top: 0.5rem;
}

/* Animated Tagline */
.animated-tagline {
font-family: 'Lobster', cursive;
font-size: 1.8rem;
color: #333;
opacity: 0;
animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* How It Works */
.how-it-works {
padding: 4rem 2rem;
background: #f9f9f9;
text-align: center;
}

.how-it-works h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
}

/* Container for benefits + forms */
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ensures horizontal centering */
  align-items: flex-start;
  gap: 2rem;
  padding: 1rem;
}

/* Shared style for all box types */
.benefit-box,
.form-section {
  flex: 1 1 300px;
  max-width: 420px;
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 0 auto; /* horizontal centering fallback */
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Make form inputs full width inside box */
.form-section input,
.form-section textarea,
.form-section select {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 8px;
margin-bottom: 1rem;
}

/* Submit button */
.form-section button {
background-color: #0077cc;
color: #fff;
padding: 0.75rem 2rem;
border: none;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
}

.form-section button:hover {
background-color: #005fa3;
}

@media (max-width: 768px) {
  .benefit-box,
  .form-section {
    width: 90%;
    margin: 1rem auto;
  }

  .benefits-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Hero with fallback background color */
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
width: 100%;
background: #f3f8ff url('background-compressed.jpg') no-repeat center center/cover;
background-attachment: scroll;
}

/* Partners & Investors */
.partners, .investors {
padding: 4rem 2rem;
background: #fff;
text-align: center;
}

.partners h2, .investors h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.partners p, .investors p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

/* Forms */
form {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin-top: 2rem;
}

form input {
padding: 0.75rem;
width: 300px;
border: 1px solid #ccc;
border-radius: 8px;
}

form button {
padding: 0.75rem 2rem;
border: none;
background-color: #0077cc;
color: #fff;
font-size: 1rem;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}

form button:hover {
background-color: #005fa3;
}

/* Testimonials */
.testimonials {
padding: 4rem 2rem;
background: #f9f9f9;
text-align: center;
}

.testimonials h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.testimonials p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto;
color: #666;
}

/* Join Waitlist */
.join-waitlist {
padding: 4rem 2rem;
background: #fff;
text-align: center;
}

.join-waitlist h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
background: #0e0e0e;
color: #fff;
text-align: center;
padding: 4rem 2rem;
margin: 3rem auto;
max-width: 800px;
border-radius: 20px;
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-section h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.1rem;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-button {
display: inline-block;
background-color: #3f87f5;
color: #fff;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: bold;
text-decoration: none;
transition: background 0.3s ease;
}

.cta-button:hover {
background-color: #2f6fe0;
}

/* Footer */
footer {
padding: 1.5rem 2rem;
text-align: center;
background: #333;
color: #fff;
font-size: 0.9rem;
}

/* Social Links Text */
.social-links-text {
text-align: center;
color: white;
margin-top: 20px;
font-size: 0.95rem;
line-height: 1.6;
}

.social-links-text a {
color: white;
text-decoration: none;
}

.social-links-text a:hover {
text-decoration: underline;
}

/* Section Box */
.section-box {
background-color: #fdfdfd;
border: 1px solid #ddd;
border-radius: 12px;
padding: 2rem;
margin-top: 2rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.timeline {
margin-top: 1.5rem;
text-align: left;
}

.milestone {
margin-bottom: 1.5rem;
}

.milestone h3 {
margin-bottom: 0.25rem;
font-size: 1.1rem;
color: #444;
}

.milestone p {
margin-bottom: 0.25rem;
color: #666;
}

.milestone .date {
font-size: 0.85rem;
color: #999;
}

/* FAQ Section Styling */
.faq {
max-width: 800px;
margin: 3rem auto;
padding: 0 1rem;
font-family: sans-serif;
}

.faq h2 {
text-align: center;
font-size: 1.8rem;
color: #1b1b1b;
margin-bottom: 2rem;
}

.faq details {
margin-bottom: 1rem;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 6px;
background: #f9f9f9;
transition: all 0.3s ease;
}

.faq summary {
font-weight: bold;
cursor: pointer;
font-size: 1rem;
}

.faq details[open] {
background: #fff;
border-color: #ccc;
}

.faq p {
margin-top: 0.5rem;
font-size: 0.95rem;
line-height: 1.4;
color: #444;
}

.solo-hotel-box {
background-color: #ffffff;
border: 2px solid #e0e0e0;
border-radius: 12px;
padding: 2rem;
max-width: 700px;
margin: 2rem auto;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solo-hotel-box h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: #222;
}

.solo-hotel-box ul {
list-style-type: disc;
padding-left: 1.5rem;
color: #444;
}

.solo-hotel-box ul li {
margin-bottom: 0.75rem;
font-size: 1rem;
line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
.benefits-container {
flex-direction: column;
align-items: center;
}

.nav-links {
display: none;
flex-direction: column;
background: white;
position: absolute;
top: 60px;
right: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
padding: 1rem;
z-index: 999;
}

.nav-links.active {
display: flex;
}

.hamburger {
display: block;
}

.hero {
background: url('background-compressed.jpg') no-repeat center center/cover;
}
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px; /* Adjust based on your sticky nav height */
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: rgba(255, 255, 255, 0.95);
position: sticky;
top: 0;
z-index: 1000;
}

.hamburger {
display: none;
font-size: 2rem;
cursor: pointer;
color: #ff6600;
}

/* Navigation links default */
.nav-links {
display: flex;
gap: 1.5rem;
}

/* Responsive nav */
@media (max-width: 768px) {
.hamburger {
display: block;
}

.nav-links {
display: none;
flex-direction: column;
background: white;
position: absolute;
top: 70px;
right: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 1rem;
z-index: 999;
}

.nav-links.active {
display: flex;
}
}
.form-section {
margin-top: 2rem;
padding: 1rem;
background: #f9f9f9;
border-radius: 10px;
}
.form-section input,
.form-section textarea {
width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 8px;
}
.form-section button {
background-color: #0066ff;
color: white;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 8px;
cursor: pointer;
}
.form-section button:hover {
background-color: #0052cc;
}
.form-section {
margin-top: 2rem;
padding: 1rem;
background: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional for subtle styling */
margin-bottom: 2rem; /* To make sure it doesn't stretch into the footer */
}
html {
scroll-behavior: smooth;
}
.section-block {
background: #f9f9f9;
padding: 4rem 2rem;
margin: 2rem auto;
border-radius: 12px;
max-width: 900px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
footer.section-block {
background-color: #f9f9f9;
padding: 2rem;
margin-top: 3rem;
border-top: 1px solid #ddd;
text-align: center;
font-size: 0.95rem;
color: #555;
}

.footer-container {
max-width: 800px;
margin: 0 auto;
}

.social-links-text {
margin-top: 1.5rem;
font-size: 1rem;
line-height: 1.6;
color: #333;
}

.social-links-text p {
margin-bottom: 0.5rem;
}

.social-links-text a {
color: #333;
text-decoration: none;
margin: 0 0.75rem;
font-weight: 600;
}

.social-links-text a:hover {
text-decoration: underline;
}
footer.footer-dark {
background-color: #0e0e0e;
color: #ffffff;
padding: 2rem;
margin-top: 3rem;
text-align: center;
border-top: 1px solid #333;
font-size: 0.95rem;
}

.footer-container {
max-width: 800px;
margin: 0 auto;
}

.social-links-text {
margin-top: 1.5rem;
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
}

.social-links-text a {
color: #ffffff;
text-decoration: none;
margin: 0 0.75rem;
font-weight: 600;
transition: color 0.3s ease;
}

.social-links-text a:hover {
color: #3f87f5;
text-decoration: underline;
}
.smart-travel-cta,
.section-block {
padding: 2rem;
margin: 2rem auto;
max-width: 800px;
text-align: center;
}

@media (max-width: 768px) {
.smart-travel-cta,
.section-block {
padding: 2rem 1rem;
margin: 2rem 1rem;
width: 100%;
}

.form-section input,
.form-section textarea {
width: 100% !important;
}
}
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }

  .form-section,
  .benefit-box,
  .section-block,
  .roadmap,
  footer {
    width: 100%;
    max-width: 95%;
    margin: 1rem auto;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
  }

  footer .footer-container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
  }
}
/* Fix section layout for mobile & containment */
.smart-travel-cta.section-block {
  padding: 2rem 1rem;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.smart-travel-cta.section-block .form-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Make sure inputs are full width */
.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Submit button */
.form-section button {
  width: 100%;
  padding: 0.75rem;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-section button:hover {
  background-color: #005fa3;
}
body {
  font-family: 'Outfit', sans-serif;
}


