@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy:ital@0;1&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #fff8e9de;
  color: #333;
}

html, body {
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

/* Video background */
#bg-video,
#bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* push behind content */
}

#bg-image {
  display: none; /* hidden on desktop by default */
}

/* Mobile view: hide video, show image */
@media (max-width: 768px) {
  #bg-video {
    display: none;
  }
  #bg-image {
    display: block;
    height: 50vh;
  }
}

@media (max-width: 380px) {
  #bg-image {
    height: 65vh;
  }

  #top {
    min-height: 65vh;
  }
}

/* Top section with background */
#top {
  position: relative;
  /* background: url("../images/alpine_still.jpg") no-repeat center center/cover; */
  color: white;
  text-align: center;
  min-width: 100vw;
  height: 50vh;
}

#top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000055;
  z-index: 0;
}

#intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0rem 2rem 1rem 2rem;
  padding-top: 10rem;
  padding-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 1.6;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

/* Header styles */

.logo {
  height: 2.5rem;
  width: auto;
  border-radius: 2rem;
  margin-left: 0rem;
  margin-top: 0.2rem;
}

header {
  color: #ffffff;
  padding: 0.5rem 2rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: #2b6bb0bb; */
  z-index: 2;
  transition: background 0.3s;
}

header.scrolled {
  background: #2b6cb0;
}

nav {
  position: relative;
  display: flex;
  gap: 0.5rem;
}

#brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header h1 {
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 400px) {
  #brand {
    margin-left: -1.25rem;
  }

  header h1 {
    margin-left: -1rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 425px) {
  header h1 {
    margin-left: -0.5rem;
    font-size: 1.4rem;
  }
}
nav a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

#menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* Mobile Menu Overlay */
#menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #000000c2;
  list-style: none;
  padding: 0;
  margin: 0;

  z-index: 99999 !important;
}

#menu.active {
  display: flex;
}

#menu li {
  margin: 1rem 0;
  padding-bottom: 2rem;
}

#menu a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

/* Sections */
section {
  padding: 2rem 1rem;
  background: #ffffff;
  margin: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
  scroll-margin-top: 6.5rem;
}

#concept {
  font-style: italic;
}

section h2 {
  margin-bottom: 0.75rem;
  color: #2b6cb0;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

.trip-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Card styling */
.trip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0.1rem 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.5s ease;
  max-width: 500px;
}

.trip-card img {
  margin-top: 10px;
  width: 95%;
  height: 220px;
  object-fit: cover;

  padding: 6px;
  background:#f8f5ef;
  border: 2px solid #d4c7a1;
  border-radius: 10px;

  box-shadow: 
      inset 0 0 0 1px #ffffff,
      0 10px 25px rgba(0,0,0,-5);
}


.trip-card h3 {
  /* margin: 1rem 0rem 0.5rem 1.5rem; */
  margin-top: 10px;
  margin-left: 2rem;
  color: #2b6cb0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.trip-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 2rem;
}

.trip-card i.fa-circle-info {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 1.5rem;
  color: #2b6cb0;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .trip-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (min-width: 1100px) {
  .trip-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.community-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding-top: 2rem;
}

.community-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 2;
  color: #333;
}

.community-item i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 2rem; /* fixed size for all icons */
  height: 2rem;
  font-size: 1rem;

  background: #0077b6; /* accent background */
  color: #fff; /* white icon */
  border-radius: 50%; /* makes it circular */
  flex-shrink: 0;
}

/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background: #fff;
  border-radius: 0.75rem;
  padding-left: 1rem;
  max-width: 600px;
  width: 80%;
  overflow-y: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

/* scrolling area ONLY */
.modal-scroll {
  max-height: 58vh;
  overflow-y: auto;
  padding-right: 5px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .modal-scroll {
    max-height: 70vh;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .modal-scroll {
    max-height: 80vh;
  }
}

.modal-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.modal-content h3 {
  margin: 0.5rem 0;
  color: #2b6cb0;
}

.modal-content ul {
  text-align: left;
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.modal-content ul li {
  margin-bottom: 0.5rem;
}

/* Close button */
.close {
  position: sticky;
  top: -2;
  right: 0;
  margin-top: -10px;
  float: right;
  font-size: 2rem;
  color: #555;
  /* font-weight: bold; */
  background: #fff;
  padding: 4px 10px;
  border-radius: 10px;
  z-index: 5;
}

/* Animation */
@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#private-club a {
  color: #c7a86f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#private-club a:hover {
  color: #a88b55;
  text-decoration: underline;
}



#payment li {
  margin-left: 2rem;
}

/* Cancellation Policy Download */
.policy-download {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 4px solid #2b6cb0;
  background: #f8fafc;
  border-radius: 0.5rem;
}

.policy-download p {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #2b6cb0;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.policy-btn:hover {
  background: #68d391;
  transform: translateY(-1px);
}


/* ===== Contact Form ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
label {
  font-weight: bold;
  font-size: 0.9rem;
}

input,
textarea,
button {
  padding: 0.75rem;
  border: 0.0625rem solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 7.5rem;
}

button {
  background: #2b6cb0;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

/* ===== Founders Section ===== */
#founders {
  text-align: center;
}

#founders h2{
  text-align: left;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Side-by-side on tablet & up */
@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}


/* Founder Card */
.founder-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0.1rem 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.12);
}

.founder-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #d4c7a1; /* matches your card image accent */
}

.founder-card h3 {
  color: #2b6cb0;
  margin-bottom: 0.3rem;
}

.founder-role {
  font-style: italic;
  color: #777;
  margin-bottom: 1rem;
}

.founder-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.bio-text {
  text-align: left;
}


/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 1rem;
  background: #2b6cb0;
  color: white;
  margin-top: 2rem;
  font-size: 0.5rem;
}

footer img {
  height: auto;
  width: 80vw;
}

@media (min-width: 600px) {
  footer img {
    max-height: 20vh;
  }
}

.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  z-index: 1000;
}

/* Main button */
.fab.main-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2b6cb0;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1001;
  transition: background 0.3s;
}

/* Options container */
.fab-options {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  margin-bottom: 10px;
  transform: translateX(-1px);
}

/* Individual option buttons */
.fab.option-fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #fff;
  color: #2b6cb0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none; 
}

/* Show options on active */
.fab-container.active .fab-options .option-fab {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



@media (min-width: 800px) {
  .trip-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Larger Screens */
@media (min-width: 900px) {
  /* header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }

  header h1 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
    
    margin-left: 0rem;
  }
*/
  .logo {
    height: 4rem;
    width: auto;
    border-radius: 3rem;
  }

  #top {
    height: 80vh;
  }

  #intro {
    padding-top: 15rem;
  }

  #menu {
    position: static; /* back inside header */
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background: none;
    height: auto;
  }

  #menu li {
    margin: 0 1rem;
  }

  #menu a {
    font-size: 1rem;
    color: #ffffff;
  }

  #menu-toggle {
    display: none; /* hiding menu button on desktop */
  }

  section {
    max-width: 57rem;
    margin: 2rem auto;
    scroll-margin-top: 6.8rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .trip-card:hover {
    transform: scale(1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.6);
  }

  .trip-card .read-more {
    margin: 5% 25%;
  }

  #menu li {
    padding-bottom: 0;
  }

  #menu a:hover {
    color: #68d391;
  }

  button:hover {
    background: #68d391;
  }

  .trip-card .read-more:hover {
    background: #68d391;
  }

  .close-btn:hover {
    color: #2b6cb0;
  }

  /* footer img{
    max-height: 20vh;
  } */
}
