/* CONTAINER WRAPPER */
.hero-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* HERO IMAGE WITH ZOOM ANIMATION */
.hero-image {
  background-image: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("/static/images/homescreenimagejpg.jpg");
  height: 100%;
  background-position: center;
  background-size: cover;
  animation: bg-zoom 20s ease-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ZOOM‑IN KEYFRAMES */
@keyframes bg-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}

/* CENTERED TEXT BLOCK */
.hero-text {
  text-align: center;
  color: #F8F4E9;
  max-width: 90%;
  padding: 2rem;
  animation: fade-in-up 1s ease-out both;
}

/* TEXT ANIMATIONS */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}


/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text p  { font-size: 1.1rem; }
  .btn { padding: 0.6rem 1.3rem; }
}


/*############################*/
/* tours.css */

/* Section wrapper */
.tour-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

/* Header */
.tour-header {
  text-align: center;
  margin-bottom: 2rem;
}
.tour-title {
  font-size: 2.25rem;
  font-weight: 700;
}
.tour-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Grid: 1 column mobile, 2 columns ≥992px, 3 columns ≥1200px */
.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .tour-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.tour-card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0; /* sharp corners */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Image */
.tour-card-image-wrapper {
  width: 100%;
  overflow: hidden;
}
.tour-card-image {
  width: 100%;
  display: block;
  height: auto;
}

/* Info bar */
.tour-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(62,39,35,0.9);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
.tour-info-title {
  font-weight: 600;
  text-transform: uppercase;
}
.tour-info-duration {
  opacity: 0.9;
}

/* Overlay */
.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62,39,35,0.95);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  box-sizing: border-box;
}
.tour-card:hover .tour-overlay {
  transform: translateY(0);
}
.tour-overlay-content {
  overflow-y: auto;
  max-height: calc(100% - 3rem);
  margin-bottom: 1rem;
}
.tour-overlay-day {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.tour-overlay-link {
  align-self: flex-start;
  background: #fff;
  color: #3E2723;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.tour-overlay-link:hover {
  background: #f0f0f0;
}


/* Section wrapper */
.destinations-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.section-header p {
  font-size: 1rem;
  color: #555;
}

/*DESTINATIONS SECTION*/
/* destinations.css */
.dstn-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.dstn-header {
  text-align: center;
  margin-bottom: 2rem;
}
.dstn-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dstn-subtitle {
  font-size: 1.1rem;
  color: #555;
}

/* Grid: 1 col mobile, 2 col ≥768px, 3 col ≥992px */
.dstn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .dstn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dstn-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  /* sharp corners */
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dstn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.dstn-card-image-wrapper {
  width: 100%;
  overflow: hidden;
}
.dstn-card-image {
  display: block;
  width: 100%;
  height: auto;
}

.dstn-card-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.dstn-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.dstn-card-text {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}
.dstn-card-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #007BFF;
  align-self: flex-start;
  transition: color 0.2s ease;
}
.dstn-card-link:hover {
  color: #0056b3;
}


/*LOCATION CSS*/
/* File: locations.css */

/* Section wrapper */
.lctn-section {
  padding: 3rem 1rem;
  background-color: #fafafa;
}

/* Inner wrapper to center content */
.lctn-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styles */
.lctn-header {
  text-align: center;
  margin-bottom: 2rem;
}
.lctn-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lctn-subtitle {
  font-size: 1rem;
  color: #555;
}

/* Grid layout */
.lctn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .lctn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .lctn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.lctn-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lctn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

/* Image */
.lctn-image-wrapper {
  width: 100%;
  overflow: hidden;
}
.lctn-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content */
.lctn-content {
  padding: 1rem;
  flex-grow: 1;
}
.lctn-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.lctn-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Footer / CTA button */
.lctn-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #eee;
}
.lctn-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #3E2723;
  background: transparent;
  color: #3E2723;
  transition: background 0.2s ease, color 0.2s ease;
}
.lctn-button:hover {
  background: #3E2723;
  color: #fff;
}
.lctn-button--primary {
  background: #3E2723;
  color: #fff;
}
.lctn-button--primary:hover {
  background: #2B1B18;
}

/* “View All” call‑to‑action container */
.lctn-cta {
  margin-top: 2rem;
  text-align: center;
}

/* about.css */
.about-section {
  padding: 4rem 1rem;
  background: #fff;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-container {
    grid-template-columns: 2fr 1fr;
  }
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .about-features {
    flex-direction: row;
  }
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-icon {
  font-size: 2rem;
  color: #3E2723;
}
.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.about-feature-desc {
  font-size: 0.95rem;
  color: #555;
}

.about-image-wrapper {
  text-align: center;
}
.about-image {
  max-width: 100%;
  height: auto;
}

/* greetings.css */
.greet-section {
  padding: 4rem 1rem;
  background: #f9f9f9;
}
.greet-container {
  max-width: 600px;
  margin: 0 auto;
}
.greet-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.greet-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.greet-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.greet-group {
  display: flex;
  flex-direction: column;
}
.greet-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.greet-error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.greet-button {
  background: #3E2723;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.greet-button:hover {
  background: #5d3c30;
}








/* memberships.css */
.mem-section {
  background-color: #fff;
  padding: 4rem 1rem;
}
.mem-container {
  max-width: 1200px;
  margin: 0 auto;
}
.mem-header {
  text-align: center;
  margin-bottom: 2rem;
}
.mem-title {
  font-size: 2rem;
  font-weight: 700;
}
.mem-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Grid: 2 columns mobile, 4 columns ≥768px, 6 columns ≥992px */
.mem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 768px) {
  .mem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .mem-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.mem-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 0; /* sharp corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mem-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mem-image {
  min-width: 100%;
  max-width: 110%;
  object-fit: contain;
}
