/* General & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.main-header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50; /* A color that feels natural and welcoming */
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    text-align: center;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.nav-links.active {
    display: flex; /* Displayed when active (mobile) */
}

.nav-links li {
    padding: 1rem 0;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4CAF50;
}

/* Hamburger Menu (Mobile Only) */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #555;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
    background: url('../images/background.png') no-repeat center center/cover;
    color: #fff;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #45a049;
}

/* Service & Testimonial Sections */
section {
    padding: 4rem 0;
    text-align: center;
}

.services-overview-section, .testimonial-section, .cta-section {
    background: #f9f9f9;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 1rem;
    color: #4CAF50;
}

.card p {
    padding: 0 1rem 1rem;
}

.card .read-more {
    display: block;
    padding: 1rem;
    background: #eee;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.card .read-more:hover {
    background: #ddd;
}

/* Testimonials */
.testimonial-card {
    max-width: 700px;
    margin: 0 auto 2rem;
    background: #fff;
    border-left: 5px solid #4CAF50;
    padding: 2rem;
    font-style: italic;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: bold;
    text-align: right;
    color: #777;
}


/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.footer-info, .footer-links, .footer-contact {
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #aaa;
}


/* Media Queries for Desktop */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

    .hamburger-menu {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        border-bottom: none;
    }

    .nav-links li {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .service-cards {
        flex-direction: row;
    }

    .card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-info, .footer-links, .footer-contact {
        text-align: left;
        flex: 1;
    }
}


/* Section Container */
.roadtrip {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  
  /* Inner Container */
  .roadtrip .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Heading */
  .roadtrip h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
  }
  
  /* Hero Image */
  .roadtrip .hero-image {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .roadtrip .hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .roadtrip .hero-image figcaption {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
  }
  
  /* Paragraphs */
  .roadtrip p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
  }
  
  /* Links */
  .roadtrip a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .roadtrip a:hover {
    text-decoration: underline;
  }
  
  /* Trip Highlights List */
  .roadtrip .trip-highlights {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
  }
  
  .roadtrip .trip-highlights li {
    margin-bottom: 10px;
    text-align: left;
  }
  
  /* Call-to-Action Button */
.cta {
    text-align: center;
    margin-top: 30px;
  }
  
.cta .book-now {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 28px;
    font-size: 1.1em;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
.cta .book-now:hover {
    background-color: #4CAF50;
    text-decoration: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .roadtrip h2 {
      font-size: 1.6em;
    }
  
    .roadtrip .cta .book-now {
      padding: 10px 20px;
      font-size: 1em;
    }
  }


  /* --- About Us Page Specific Styles --- */

.about-us-section {
    padding: 3rem 1rem;
    text-align: left; /* Align text left for better readability on long-form content */
}

.about-us-section .container {
    max-width: 900px; /* Constrain width for optimal reading experience */
}

.about-us-section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.about-us-section h2 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-us-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-us-section strong {
    font-weight: bold;
    color: #333;
}

.about-us-section hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 3rem 0;
}

.about-us-section ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-us-section li {
    position: relative;
    padding-left: 1.5rem; /* Space for custom bullet */
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.about-us-section li strong {
    color: #4CAF50; /* Highlight the key phrases in the list */
}

/* Custom bullet point for list items */
.about-us-section li::before {
    content: '✔️'; /* Checkmark emoji for a friendly, professional touch */
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
}

/* --- Responsive Styles for larger screens (optional, but good practice) --- */

@media (min-width: 768px) {
    .about-us-section h1 {
        font-size: 2.5rem;
    }

    .about-us-section h2 {
        font-size: 1.8rem;
    }
}
  
#privacy {
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
}

#privacy h2 {
    padding-top: 30px
} 