/* =========================== */
/* HEADER & NAVIGATION STYLES  */
/* =========================== */

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: lightseagreen;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  
}



.logo {
  height: 180px;
}

/* Hamburger */
.hamburger {
  display: none; /* Hidden on large screens */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Nav links */
nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 800;
  font-size: large;
  margin-right: 20px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #0077cc;
}

/* By default, hide the social icons in nav */
.nav-socialmedia {
  display: none;
}

/* When nav is active (hamburger clicked), show them */
nav.active .nav-socialmedia {
  display: flex;
  gap: 1rem; /* spacing between icons */
 }

/* Optional: style images */
.nav-socialmedia img {
  width: 24px;
  height: 24px;
}



/*footer*/
/* large.css */

footer {
  background-color: #111;
  color: #eee;
  padding: 30px 80px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.8);
}

footer p {
  margin: 0 0 20px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.socialmedia {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.socialmedia a {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.socialmedia a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(40%);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.socialmedia a:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.9);
  cursor: pointer;
}


/*ABOUT*/

.main-black {
  background-color: grey; /* dark background */
  max-width: 100%;
  color: #eee; /* light text */
  padding: 40px 80px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #f4f4f4;
}

.hero article {
  max-width: 900px;
  margin: 0 auto;
}

.hero article h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.hero article img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.hero article p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffcc00;
  border-bottom: 3px solid #ffcc00;
  padding-bottom: 8px;
}

section p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #ddd;
}

.middle-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.7);
  margin-bottom: 35px;
}

.adventure-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.adventure-gallery figure {
  background-color: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.adventure-gallery figure:hover {
  transform: scale(1.05);
}

.adventure-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.adventure-gallery figcaption {
  padding: 12px 15px;
  font-size: 1rem;
  color: #eee;
  text-align: center;
  background-color: #111;
}


/*CONTACT*//* CONTACT - Large Screens */

.title {
  max-width: 1100px;

  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title h1 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #023047;
}

.happy-image {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.image-block {
  flex: 1;
  background-color: #f0f4f8;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
}

.image-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #219ebc;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
  object-fit: cover;
}

.caption {
  font-size: 0.9rem;
  color: #555;
}

.company-information {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.company-information h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #023047;
}

.company-information p {
  font-size: 1rem;
  margin-bottom: 8px;
}

.company-information a {
  color: #219ebc;
  text-decoration: none;
}

.company-information a:hover {
  text-decoration: underline;
}

.company-information iframe {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-title {
  max-width: 1100px;
  margin: 50px auto 20px;
  font-size: 2.4rem;
  text-align: center;
  color: #023047;
}

fieldset {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 30px 40px;
  border: 2px solid #219ebc;
  border-radius: 12px;
  background-color: #f7fbfd;
}

form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1rem;
}

.contact-us {
    display: flex;
    flex-direction: column;

}

.contact-us label {
    font-size: 1.2rem;
}

.contact-us input {
        height: 34px;
}

/* Why Are You Contacting Us - Group */
.why-are-you-contacting-us {
  display: flex;
  flex-direction: row;        /* horizontal layout */
  flex-wrap: wrap;
  justify-content: center;    /* center the entire group horizontally */
  gap: 30px;                  /* space between options */
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-are-you-contacting-us-label {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #023047;
}

/* Each radio button + label */
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap; /* keep label text on one line */
}

.radio-label input[type="radio"] {
  accent-color: #0077cc;
  transform: scale(1.2);
  cursor: pointer;
  margin: 0; /* reset margin */
}


.leave-message {
    display: flex;
    flex-direction: column;
}

.leave-message label {
    font-size: 1.2rem;
}



/* Subscription and Button */
.subscription {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #0077b6;
  max-width: 700px;
  margin: 0 auto;
}

.subscription input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.button {
  text-align: center;
}

button {
  background-color: #219ebc;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  padding: 14px 60px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #023047;
}


/*INDEX*/

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 20px; */
}

.page-container h1 {
    color: blue;
      font-size: 2rem;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero-title {

  margin-bottom: 20px;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.homepage-message h2 {
  max-width: 700px;
  margin: 30px auto;
  padding: 0 20px;
  font-size: 1rem;
  color: black;
}

.homepage-message p{
    color: black;
}

.company-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.company-purpose-grid .grid-item h3 {
    color: #111;
}

.company-purpose-grid .grid-item p {
    color: #111;
}


.company-purpose-grid .grid-item {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.company-purpose-grid img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.company-purpose-grid h3 {
  margin: 10px 0;
  font-size: 1.5rem;
}

.photo-gallery-header {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 2rem;
}

.slider-container {
  max-width: 1100px;
  margin: 0 auto 60px;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.testimonial {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 280px;
  flex: 0 0 auto;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial p{
    color: #111;
}

.testimonial figure {
  margin: 0 0 10px;
  text-align: center;
}

.testimonial img {
  width: 100%;
  border-radius: 6px;
  max-height: 180px;
  object-fit: cover;
}

.testimonial figcaption {
  font-weight: bold;
  margin-top: 8px;
}

.testimonial p {
  font-size: 0.95rem;
  color: #444;
}

.newsletter-section {
  background: black;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 1rem;
}

.newsletter-signup {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-signup h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.newsletter-signup label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
  color: white;
  margin-bottom: -25px;
}

.newsletter-signup input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid;
  font-size: 1rem;
}

.newsletter-signup button {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-signup button:hover {
  background-color: #0056b3;
}

.booking {
  background: #f9f9f9;
  max-width: 600px;
  margin: 50px auto 80px;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.1);
}

.booking h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}
.newsletter-signup form {
  text-align: center; /* centers inline or inline-block children */
  max-width: 400px;
  margin: 0 auto;
  padding: 0 10px;
}

.newsletter-signup form button {
  display: inline-block; /* keep it inline-block for nice sizing */
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 20px; /* spacing from inputs */
  transition: background-color 0.3s ease;
}

.newsletter-signup form button:hover {
  background-color: #0056b3;
}

/* Optional: make inputs full width with margin for spacing */
.newsletter-signup form input[type="text"],
.newsletter-signup form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

/*TRIP*/
/* Base styles */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #005f73;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

 .trip-grid .trip-card{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #e0fbfc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-8px);
}

.trip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}


.trip-grid .trip-card p{
  color: black;
}

.trip-card h2 {
  margin-bottom: 0.5rem;
  color: #028090;
}

.trip-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.cta-btn {
  display: inline-block;
  background-color: #028090;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #056a78;
}

/* Trip summary table */

.trip-summary {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}

.trip-summary th, 
.trip-summary td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  text-align: left;
}

.trip-summary th {
  background-color: #028090;
  color: white;
  font-weight: 600;
}

.trip-summary tbody tr:nth-child(even) {
  background-color: #f0f8f8;
}

/* Booking button container */

.booking {
  text-align: center;
  margin-bottom: 3rem;
}



/*FAQs*/
body {
  font-family: Arial, sans-serif;
  max-width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  color: #333;
}

h1 {
  text-align: center;
  color: #005f73;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  color: #028090;
}

.faq-question:hover {
  color: #056a78;
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 3px solid #028090;
  border-bottom: 3px solid #028090;
  transform: rotate(45deg);  /* Rotates the L shape to point down */
  transition: transform 0.3s ease;
  margin-left: 1rem;
}


/* Rotate arrow up when active */
.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #444;
  padding: 0 5px;
}

.faq-answer.open {
  max-height: 200px; /* enough height for content */
  padding: 10px 5px 15px 5px;
}

/* Optional styling for links */
a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}







/* Responsive hamburger menu styles */

@media (max-width: 768px) {
  nav {
    position: fixed;           /* make it overlay */
    top: 0;
    right: 0;
    height: 100vh;             /* full height */
    width: 250px;              /* menu width */
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    flex-direction: column;
    padding-top: 60px;         /* space for header */
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    transform: translateX(0);
  }

  nav a {
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
  }

  nav a:hover {
    background-color: #f0f0f0;
    color: #0077cc;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide normal nav on small screens */
  nav:not(.active) {
    pointer-events: none; /* disable clicks when hidden */
  }

  header {
    /* padding: 10px 20px; */
    position: relative;
    z-index: 1100;
  }

   }

 


