/* Reset default margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Playfair Display, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
  padding: 0; /* Remove padding to allow full-width hero */
}

h1 {
  font-family: 'Tangerine', cursive;
}

h2 {
  font-family: 'Bodoni Moda', serif; /* Matches blog heading font */
}

.blog-icon{
	display: none;
}

/* Home container */
.home-container {
  min-height: 100vh;
  max-height: 100%;
  position: relative;
  overflow-x: hidden;
  background-color: #fff;
}

/* Hero Section (for index.html) */
.hero-wrapper {
  /* 1. Shorter height (Adjust 80vh to whatever feels right for you, e.g., 75vh or 85vh) */
  height: 80vh; 
  position: relative;
  
  /* 2. Seamless Blend: This blends a smooth gradient over your image, 
     fading from completely transparent at the top to solid white at the very bottom */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #fff 100%), 
              url('images/home-photo.webp');
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden; /* Prevents any weird image bleeding past the boundaries */
  /* THE SAFE FIX: The photo is 100% solid all the way down to 75% height. 
     Then, between 75% and 95%, the photo itself smoothly dissolves into transparency. */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 95%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 95%);

}

.hero-wrapper .hero-content {
  /* CHANGED: Swapped from -60px to -30px to lower it back down a bit */
  transform: translateY(-30px); 
}

.blog-card-image {
  display: block; /* Prevent layout issues */
  height: 70%;
  aspect-ratio: 3 / 4; /* Adjust to your image aspect ratio */

  opacity: 0; /* Start invisible to prevent flash */
  transition: opacity 2.0s ease; /* Smooth fade-in */
  
}

/* Fade in image when loaded */
.blog-card-image.loaded {
  opacity: 1;
}


.destination-card-image {
  height: 80%;
  aspect-ratio: 3 / 4;
  opacity: 0;  /*Start invisible to prevent flash */
  transition: opacity 2.0s ease; /* Smooth fade-in */
}


/* Fade in image when loaded */
.destination-card-image.loaded {
  opacity: 1;
}

/*
.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0), #fff);
  z-index: 2;
}
*/

/*
.hero-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0), #fff);
  z-index: 2;
}
*/

.margin-top {
    margin-top: 3px; /* Adjust the value as needed */
}

.margin-bottom {
	margin-bottom: 3px;
}

.hero-wrapper::after {
   content: '';
   position: absolute;
   bottom: -1px; /* Tucked slightly down to completely eliminate the transparent sub-pixel line */
   left: 0;
   width: 100%;
   height: 200px;
   
   /* Changed the gradient start from 0.3 opacity to 1 (solid white) 
      so the wave itself is perfectly solid white, matching the page background below it */
   background: linear-gradient(to bottom, rgba(255, 255, 255, 1), #fff);
   
   /* Your beautiful custom wave path */
   clip-path: path('M0,160 C150,120 300,200 450,160 S750,120 900,160 S1200,200 1350,160 S1650,120 1800,160 V200 H0 Z');
   z-index: 2;
}

.promotion-section {
  position: relative;
  height: 110vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.promotion-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.fixed{
	position:fixed;
}

.promotion-box{
	z-index: 2;

}



.promotion-section::after {
   content: '';
   position: absolute;
   top: -10px;
   left: 0;
   width: 100%;
   height: 200px;
   background: #fff;
   clip-path: path('M0,40 C150,80 300,0 450,40 S750,80 900,40 S1200,0 1350,40 S1650,80 1800,40 V0 H0 Z');
}

.highlitghts-section{
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.highlitghts-section::after {
   content: '';
   position: absolute;
   bottom: 190px;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #fff; /* Background color below the wave */
   clip-path: path('M0,160 C150,120 300,200 450,160 S750,120 900,160 S1200,200 1350,160 S1650,120 1800,160 V200 H0 Z');
}

/* Reset default link styles */
.promotion-box {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  max-width: 500px; /* Adjust as needed */
  margin: 10px auto;
  padding: 20px;
}

/* Main box styling */
.promotion-content {
  background: linear-gradient(135deg, #6b7280, #74c4de); /* Vibrant gradient */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Hover effect */
.promotion-content:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Icon styling */
.promotion-icon {
  font-size: 2.5rem;
  color: #fff;
}

/* Title styling */
.promotion-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* Description styling */
.promotion-desc {
  font-size: 0.9rem;
  color: #f0f0f0;
  margin: 0;
}

/* Focus state for accessibility */
.promotion-box:focus .promotion-content {
  outline: 2px solid #fff;
  outline-offset: 2px;
}


.hero {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: white;
  padding: 60px 20px;
  z-index: 3; /* Above background and gradient */
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 550;
  text-shadow: 0px 5px 5px rgba(10, 25, 47, 0.8);
  margin-bottom: 0px;
  animation: slideUp 1.2s ease-out forwards;

}

.hero-subtitle {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0px 5px 5px rgba(10, 25, 47, 0.8);
  animation: slideUp 1.2s ease-out forwards;
}

.cta-button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #74c4de;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-button-homepage {
  margin-top: 0px;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #74c4de;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Navbar styling */
.navbar-container {
  font-family: 'Bodoni Moda', serif;
  background: transparent;
  padding: 10px 20px;
  position: absolute; /* Overlay on hero */
  top: 0;
  left: 0;
  right: 0;
  z-index: 4; /* Above hero content */
}

.navbar-container.with-blog-name {
  padding-top: 0;
}

.blog-name {
  text-align: center;
  margin-bottom: 10px;
}

.blog-name-link {
  text-decoration: none;
  color: #333;
}

.blog-name-link h1 {
  font-size: 2rem;
  font-weight: bold;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;

}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  background-color: #fff;
  height: 3px;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 10;
}

.hamburger-icon {
  top: 50%;
}

.hamburger-icon::before {
  content: '';
  top: -8px;
}

.hamburger-icon::after {
  content: '';
  top: 8px;
}

.nav-links {
  color: white;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 8px 10px; /* Adjusted to fit border */
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-link:hover {
  color: #74c4de;
}

.nav-link.active {
  font-weight: bold;
  color: #74c4de;
  border: 2px solid #74c4de; /* Border box for active link */
  border-radius: 4px; /* Slight rounding for aesthetics */
  padding: 5px 20px;
}

/* ==========================================================================
   HOMEPAGE DESKTOP ONLY: Put the shadow right underneath your main link styles
   ========================================================================== */
@media (min-width: 816px) {
  /*.home-page*/ .nav-link {
    text-shadow: 
      1px 1px 2px rgba(16, 44, 54, 0.95),  
      0px 0px 8px rgba(16, 44, 54, 0.80),  
      0px 0px 15px rgba(16, 44, 54, 0.50); 
  }

  .home-page .nav-link:hover, 
  .home-page .nav-link.active {
    text-shadow: 
      1px 1px 2px rgba(16, 44, 54, 0.9),
      0px 0px 10px rgba(16, 44, 54, 0.6);
  }
}

/* Blog Preview Section (for index.html) */
.blog-preview {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 0;
  background: #ffffff;
}

.section-title {
  color: #74c4de;
  font-size: 3.5em;
  margin-bottom: 2rem;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0 10px;
  justify-content: center;
}

.blog-card {
  display: flex;
  flex: 0 0 500px;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background-size: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 370px;
  border: 1px solid black;
  animation: slideUp 1.2s ease-out forwards;

}

/* Style the destination card */
.destination-card {
  display: flex;
  flex: 0 0 200px;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background-size: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 350px;
  border: 1px solid black;
  animation: slideUp 1.2s ease-out forwards;
}

/* Define the slide-up animation for page load */
@keyframes slideUp {
  from {
    transform: translateY(20px); /* Start 20px below */
    opacity: 0; /* Fade in */
  }  
}

/* Hover effect */
.destination-card:hover {
  transform: translateY(-5px); /* Slide up 5px on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #74c4de;
}



.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #74c4de;
}

.blog-content {
  padding: 20px;
  text-align: left;
  position: relative;
  z-index: 2;
  background-color: white;
  height: 30%;

}

.destination-content {
	display: flex; 
	justify-content: center; 
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 2;
	height: 20%;
	width: 100%;
	padding: 0 10px;
}


.blog-card .blog-title {
	padding: 2px 5px;
	margin-bottom: 0px;
	width: fit-content;
	font-family: 'Bodoni Moda', serif;
	font-size: 0.8rem;
	border-radius: 10px;
	border: 1px solid black;
}


.destination-card .destination-title {
  font-size: 1.1rem;
  font-weight: 700;
}


	.blog-teaser {
	  font-family: 'Bodoni Moda', serif;
	  opacity: 1;
	  text-decoration: none;
	  padding: 5px 2px;
	  font-weight: 700;
	  line-height: 1.2;

	}



/* Blogs Page (from Blogs.js) */
.blogs-container {
  padding: 20px 20px;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #fff;

}

.related-blogs-container {
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
}

.related-blogs{
	margin-bottom: 20px;
}

.related-title{
	font-size:1.4rem;
	text-align: center;
	font-weight: 600;
    color: #74c4de;
}



.blogs-hero {
  position: relative;
  background-size: cover;
  height: 50vh;
  background: linear-gradient(135deg, #6b7280, #74c4de);  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 20px 95px 20px;
  z-index: 1;

}


.blogs-hero::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 100%;
   height: 205px;
   background-color: #fff; /* Background color below the wave */
   clip-path: path('M0,160 C150,120 300,200 450,160 S750,120 900,160 S1200,200 1350,160 S1650,120 1800,160 V200 H0 Z');
}

.blogs-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.blogs-title {
  font-size: 5.5rem;
  font-weight: 50;
  text-align: center;
  margin-bottom: 0px;
  animation: slideUp 1.2s ease-out forwards;
  text-shadow: 0px 5px 5px rgba(10, 25, 47, 0.8);

}

.blogs-subtitle {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin: -30px auto 0 auto;
  font-weight: 200;
  text-shadow: 0px 5px 5px rgba(10, 25, 47, 0.8);
}


.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 0fr));
  gap: 30px;
  justify-content: center;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 0fr));
  gap: 30px;
  justify-content: center;
}


.related-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-content: stretch;
}

.related-blogs .blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 0fr));
  gap: 5px;
  justify-content: center;
}

	

.blogs-page-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
  color: inherit;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 400px;
   border: 2px solid black;
}

.blogs-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blogs-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.blogs-page-card .blog-content {
  padding: 20px;
  text-align: left;
  position: relative;
  z-index: 2;
  color: white;
  height: 130px;
}

/*
.related-blogs .blog-content {
  padding: 0px 10px;
  text-align: left;
  position: relative;
  z-index: 2;
  height: 30%;
}
*/

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.related-blogs .blog-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

/*
.blog-teaser {
  font-size: 1rem;
  opacity: 0.8;
}
*/

.related-blogs .blog-teaser {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Footer */
.footer {
  position: relative;
  font-family: 'Bodoni Moda', serif;
  background: linear-gradient(135deg, #6b7280, #74c4de);
  padding: 120px 40px 40px 40px; /* Increased top/bottom padding for stacking */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px; /* Space between subscribe and footer-content */
}

.footer::after {
   content: '';
   position: absolute;
   top: -10px;
   left: 0;
   width: 100%;
   height: 200px;
   background: #fff;
   clip-path: path('M0,40 C150,80 300,0 450,40 S750,80 900,40 S1200,0 1350,40 S1650,80 1800,40 V0 H0 Z');
}



.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.footer-text {
  font-size: 1rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
  color: #3b82f6;
  transform: scale(1.1);
}

.social-icon {
  width: 24px;
  height: 24px;
}

.subscribe-inner {
  padding: 20px;
  background-color: #fff;
  width: fit-content;
  text-align: center;
  border-radius: 8px; /* Slight rounding for aesthetics */
}

.subscribe-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #74c4de;
  font-weight: 600;
}

.subscribe-text {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #444;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-input {
  padding: 14px 20px;
  font-size: 1.1rem;
  border: 2px solid #74c4de;
  border-radius: 25px;
  width: 100%;
  max-width: 350px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-input:focus {
  border-color: #0288d1;
  box-shadow: 0 0 10px rgba(2, 136, 209, 0.3);
}

.subscribe-button {
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #74c4de;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.subscribe-button:hover {
  background-color: #0288d1;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}


/* For individual blog articles*/
/* Blog post page styles */

/* Links */
.content a {
  color: #74c4de;
  text-decoration: none;
}

.blog-footer a{
	color: white;
}

.content a:hover {
  text-decoration: underline;
}

.blogs-grid a:hover {
  text-decoration: none;
}

.destinations-grid a:hover {
  text-decoration: none;
}

.undecorated-link:hover{
	text-decoration: none;
}

.center{
	text-align: center;
}

.image-caption {
	text-align: center;
	font-size: 1rem;
	font-style: italic;
	line-height: 1.2;
  color: #888888;
}

/* Add this near your other card styles */
.blog-card .blog-title,
.blog-card .blog-teaser {
  text-shadow: none !important;
}
  
/* Container */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;

  /*min-height: calc(100vh - 50vh);*/ /* Ensure container fills remaining space after hero */
}

/* Hero Section */
.blog-hero {
  position: relative;
  height: 55vh;
  
  /* FIXED: Kept these separated so they don't fight your HTML inline style */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
  z-index: 1;

  /* FIXED: Changed from 'background:' to '-webkit-mask-image' and 'mask-image' 
     This handles the fade natively without overwriting your background image! */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden; 
}

/* This is your dark overlay that keeps the title text incredibly easy to read */
.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Slightly adjusted tint for crisp text contrast */
  z-index: 1;
}

.blog-hero::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 100%;
   height: 205px;
   background: #fff; 
   clip-path: path('M0,160 C150,120 300,200 450,160 S750,120 900,160 S1200,200 1350,160 S1650,120 1800,160 V200 H0 Z');
}

.blog-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Inside your @media (max-width: 815px) block, replace those styles with this: */

.blog-hero .blog-title {
  /* FIXED: Lifted the floor to 3.4rem and bumped the scaler to 9vw 
     This keeps short titles big and only shrinks the massive ones */
  font-size: clamp(3.4rem, 9vw, 5rem); 
  line-height: 0.95; 
  margin-bottom: 0rem;
  overflow-wrap: break-word;
  word-break: break-word;
  
  font-weight: 400;
  text-shadow: 0px 5px 5px rgba(10, 25, 47, 0.8);
  animation: slideUp 1.2s ease-out forwards;
}

.blog-hero .blog-sub-title {
  /* FIXED: Adjusted to perfectly match the new title scale */
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  font-family: 'Bodoni Moda', serif;
  opacity: 0.9;
  margin: 5px auto 0 auto; 
  
  font-weight: 200;
  text-shadow: 0px 5px 5px rgba(10, 25, 47, 0.8);
}

/* Main Content */
.content {
  padding: 70px 200px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;

}

.content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.content h2 {
  font-size: 1.6rem;
  color: #333;
  margin: 2rem 0 1rem;
}

.content h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 1.5rem 0 1rem;
}

.content h4 {
  font-size: 1.1rem;
  color: #333;
  margin: 1.2rem 0 1rem;
}

.content h5 {
  font-size: 0.9rem;
  color: #333;
  margin: 1.2rem 0 1rem;
}

.content p {
  margin-bottom: 1.5rem;
  margin-top: 1.1rem;

}

.content .underlined {
  text-decoration: underline;
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content ol {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.content img {
  display: block; 
}


/* ==========================================================================
   1. IMAGE GRIDS
   ========================================================================== */
.article-image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 100%;
}

.article-image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
}

/* ==========================================================================
   2. CORE ARTICLE IMAGES (Combined & Cleaned)
   ========================================================================== */
.article-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;    /* Default behavior: fill the container */
  opacity: 0;           /* Starts hidden for the fade-in effect */
  transition: opacity 2.0s ease; 
}

/* JavaScript fade-in states */
.article-image.loaded {
  opacity: 1;
}

.article-image:not(.loaded) {
  background-color: #f0f0f0; /* Soft grey placeholder while loading */
}

/* ==========================================================================
   3. ASPECT RATIO & CROPPING UTILITIES
   ========================================================================== */
.aspect-full {
  object-fit: contain !important; /* FOR ARTWORK: Displays the whole image, no crops */
}

.aspect-vertical {
  aspect-ratio: 3 / 4;
}

.aspect-horizontal {
  aspect-ratio: 4 / 3;
}

.aspect-horizontal-long {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1 / 1; /* Fixed from 4/4 for clean standard compliance */
}

/* ==========================================================================
   4. SINGLE IMAGE ALIGNMENT & SIZING
   ========================================================================== */
.image-titled {
  display: block;
  text-align: center;
  margin: 10px 20px 10px 0;
  max-width: 500px; 
  max-height: 700px;
}

.image-left {
  display: block;
  width: 100%;
  max-width: 410px;
  margin: 10px auto;
}

.image-right {
  display: block;
  margin: 10px auto;
  max-width: 500px;
  max-height: 600px;
}


/* Social Sharing */
.share-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 20px;
  margin: 40px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.share-icon:hover {
  transform: scale(1.1);
}

.share-icon.instagram {
  background-color: #E1306C;
}

.share-icon.x {
  background-color: #000000;
}

.share-icon.facebook {
  background-color: #3B5998;
}

.share-icon.tiktok {
  background-color: #000000;
}

.share-icon.copy {
  background-color: #666666;
}

/* Back Button */
.cta-button {
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #74c4de;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: slideUp 1.5s ease-out forwards;

}

.cta-button:hover {
  background-color: #0288d1;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}



.info-box {
  background-color: #f5f5f5; /* Light grayish background */
  border-radius: 12px; /* Rounded corners */
  padding: 25px;
  max-width: 800px; /* Matches typical blog content width */
  margin: 40px auto; /* Centered with spacing */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-family: 'Playfair Display', serif; /* Consistent with blog font */
}

.info-box-tiny {
  background-color: #f5f5f5; /* Light grayish background */
  border-radius: 12px; /* Rounded corners */
  max-width: 600px; /* Matches typical blog content width */
  margin: 10px auto; /* Centered with spacing */
  padding: 5px 40px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-family: 'Playfair Display', serif; /* Consistent with blog font */
}

.info-box h3 {
  font-family: 'Bodoni Moda', serif; /* Matches blog heading font */
  font-size: 1.1em;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.info-box h4 {
  font-family: 'Bodoni Moda', serif; /* Matches blog heading font */
  font-size: 1.1em;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}


.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.ul-disc ul{
	list-style: disc;
	padding-left: 20px;
}

.info-box ol {
  list-style: circle;
  padding-left: 50px;
}

.info-box li {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
  line-height: 1.5;
}

.info-box .info-label {
  font-weight: bold; /* Bold labels for clarity */
  color: #2c3e50; /* Darker shade for contrast */
}

.info-box .info-note {
  font-style: italic;
  font-size: 1em;
  color: #777;
  text-align: center;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #ddd; /* Subtle separator */
}

.info-box .info-note-no-border {
  font-style: italic;
  font-size: 1em;
  color: #777;
  text-align: center;
  margin: 10px 0 0;
  padding-top: 10px;
}

.info-box-tiny .info-note {
  font-style: italic;
  font-size: 0.8em;
  color: #777;
  text-align: center;
  margin: 0;
}


.info-box-tiny .info-label{
  
  font-size: 0.8em;
  font-weight: bold; /* Bold labels for clarity */
  color: #2c3e50; /* Darker shade for contrast */
}

.bold-label {
  color: #2c3e50;
}



/* Inline styles for About-specific sections */
    .about-container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-bio {
      margin-bottom: 40px;
      display: flex;
      align-items: center;
	  line-height: 1.8;
      gap: 40px;
    }
    .bio-content {
      flex: 1;
      text-align: left;
    }
	.bio-content h3 {
      font-family: 'Bodoni Moda', serif;
	  font-size: 1.4rem;
    }
	
    .bio-image {
      flex: 1;
      max-width: 50%;
    }
    .bio-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .bio-title, .facts-title {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.4rem;
      margin-bottom: 20px;
      text-align: center;
    }
    .bio-content p {
      font-family: 'Playfair Display', serif;
    }
    .about-fun-facts {
      margin-bottom: 40px;
      text-align: center;
    }
    .facts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
    }
    .fact-card {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .fact-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 10px;
    }
	
/* Inline styles for Contact-specific sections */
    .contact-container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .contact-form-section {
      margin-bottom: 40px;
      text-align: center;
    }
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .form-input, .form-textarea {
      padding: 10px;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      box-sizing: border-box;
    }
    .form-textarea {
      height: 150px;
      resize: vertical;
    }
    .form-button {
	  padding: 12px 24px;
	  font-size: 1.1rem;
	  font-weight: 600;
	  color: white;
	  background-color: #74c4de;
	  border: none;
	  border-radius: 9999px;
	  cursor: pointer;
	  transition: transform 0.2s ease, box-shadow 0.2s ease;
	}

	.form-button:hover {
	  background-color: #0288d1;
	  transform: scale(1.05);
	  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
	}
    .success-message {
      margin-top: 20px;
      padding: 10px;
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      border-radius: 4px;
      display: none;
    }
    .success-message.show {
      display: block;
    }
    .contact-info {
      text-align: center;
    }
    .info-title {
      font-family: 'Bodoni Moda', serif;
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 600px;
      margin: 0 auto;
    }
    .info-card {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
	  text-align: center;
      gap: 10px;
    }
    .info-card svg.icon {
      width: 24px;
      height: 24px;
      fill: #333;
    }
    .info-card p {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      margin: 0;
    }

/* Inline styles for Gallery-specific sections */
    .gallery-container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .gallery-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(450px, 0fr));
	  gap: 100px;
	  justify-content: center;
	}
    .gallery-card {
      position: relative;
      height: 450px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	  transition: transform 0.5s ease, box-shadow 0.5s ease;
	  border: 2px solid black;
      overflow: hidden;
	  animation: slideUp 1.2s ease-out forwards;
    }
	
	
    .gallery-image {
      width: 100%;
      height: 100%;
      object-fit: fill;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
	  opacity: 0; /* Start invisible to prevent flash */
	  transition: opacity 2.0s ease; /* Smooth fade-in */
    }



	/* Fade in image when loaded */
	.gallery-image.loaded {
	  opacity: 1;
	}

	
	
    .gallery-inner {
      position: absolute;
      top: 40%;
      right: 0px;
      background: rgba(255, 255, 255, 0.8);
      padding: 15px;
      text-align: left;
      width: 250px;
	  height: 110px;
      z-index: 2;
    }
    .gallery-title {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.1rem;
      margin: 0 0 10px;
    }
    .gallery-button {
      display: inline-block;
      padding: 8px 16px;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: black;
      text-decoration: none;
      border-radius: 20px;
	  border: 2px solid black;
      transition: background-color 0.3s;
    }
    .gallery-button:hover {
      background-color: #555;
	  color: #fff;
    }

/* Album Container */
    .album-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Album Rows */
    .album-row {
      display: grid;
      gap: 20px;
      margin-bottom: 20px;
    }


    /* Album Photos */
    .album-photo {
      overflow: hidden;
    }

    .album-photo img {
      width: 100%;
      height: 100%;
      object-fit: fill; /* Prevent stretching */
      display: block;
    }

    .album-photo img.loaded {
      transform: scale(1);
    }
	
	.album-image {
	  width: 100%;
	  height: auto; /* Maintain aspect ratio */
	  object-fit: cover; /* Ensure images fill their containers */
	  opacity: 0; /* Hide initially */
	  transition: opacity 2.0s ease; /* Smooth fade-in */
	  display: block; /* Prevent layout issues */
	}
	.album-image.loaded {
	  opacity: 1; /* Fade in when loaded */
	}
	.album-image:not(.loaded) {
	  background-color: #f0f0f0; /* Placeholder color */
	}

    /* Row 1: 3 Photos, Equal Width */
    .row-3-equal {
      grid-template-columns: repeat(3, 1fr);
    }

    .row-3-equal .album-photo {
      aspect-ratio: 4 / 5; /* Assume 3/4 in practice */
    }

    /* Row 2: 4 Photos, Equal Width */
    .row-4-equal {
      grid-template-columns: repeat(4, 1fr);
    }

    .row-4-equal .album-photo {
      aspect-ratio: 4 / 5; /* Assume 3/4 in practice */
    }

    /* Row 3: 1 Long Photo (4/3), 1 Vertical Photo (3/4) */
    .row-1-2-wide {
      grid-template-columns: 2fr 1fr; /* Balance 4/3 and 3/4 */
    }

    .row-1-2-wide .long-photo {
      aspect-ratio: 4 / 2.67;
    }

    .row-1-2-wide .album-photo:not(.long-photo) {
      aspect-ratio: 3 / 4;
    }

    /* Row 4: 1 Vertical Photo (3/4), 1 Long Photo (4/3) */
    .row-2-1-wide {
      grid-template-columns: 1fr 2fr; /* Balance 3/4 and 4/3 */
    }

    .row-2-1-wide .album-photo:not(.long-photo) {
      aspect-ratio: 3 / 4;
    }

    .row-2-1-wide .long-photo {
      aspect-ratio: 4 / 2.67;
    }

@media (max-width: 1200px) {
	.blog-hero::after {
	   background: #f5f5f5; /* Background color below the wave */
	}
	.about-container{
		max-width: 800px;
	}

	.about-bio {
		flex-direction: column;
		gap: 20px;
	}
	.bio-image {
		max-width: 100%;
	}
	.bio-content {
		text-align: center;
	}
	.facts-grid {
		grid-template-columns: 1fr;
	}	
}

/* Responsive Design */
@media (max-width: 1100px) {
  .content {
    padding: 30px 95px;
    font-size: 1.1rem;
  }
  
  .gallery-grid {
	  gap: 20px;
	}
}

@media (max-width: 960px) {

  .gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(350px, 0fr));
	}
	
	.gallery-card{
		height: 350px;
	}
}

@media (max-width: 815px) {
  
.related-blogs-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
  }
 .blog-icon {
    display: block;
    position: absolute;
    top: 10px; /* Adjust based on navbar height */
    right: 10px; /* Space from right edge */
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Maintain aspect ratio */
    z-index: 1000; /* Ensure it’s above other elements */
 }
  .navbar-container {
    padding: 10px;
    position: fixed;
  }

  .blog-name-link h1 {
    font-size: 1.5rem;
  }
  

  .hamburger {
    display: block;
  }

.nav-links {
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  width: 100%;
  height: 100vh;
  color: black;
  background: #fff; /* Or use: linear-gradient(135deg, #6b7280, #74c4de) */
  position: fixed; /* Fixed to stay in place */
  top: 0;
  left: 0;
  padding: 60px 20px;
  text-align: center;
  z-index: 5; /* Above .blog-content (z-index: 2) */
  overflow-y: auto; /* Scroll within menu if content overflows */
}

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle:checked + .hamburger .hamburger-icon {
    background: transparent;
  }

  .nav-toggle:checked + .hamburger .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
	background-color: #74c4de;
  }

  .nav-toggle:checked + .hamburger .hamburger-icon::after {
    transform: rotate(-45deg);
    top: 0;
	background-color: #74c4de;
	
	
  }

  .nav-link {
    padding: 13px 15px; /* Adjusted for border in mobile */
    font-size: 1.2rem;
	color: black;
  }

  .nav-link.active {
    border: 2px solid #74c4de; /* Fixed to match desktop */
    border-radius: 4px;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 5px; /* Pulls the subtitle up much closer to the title */
  }
    .hero-title span {
  display: block;      /* Forces "Welcome to" onto its own top line */
  margin-bottom: -20px; /* Pulls the bottom text up closer (adjust this number to make the gap smaller or larger!) */
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-wrapper {
  /* 1. Shorter height (Adjust 80vh to whatever feels right for you, e.g., 75vh or 85vh) */
  height: 75vh; 
  }

  .blog-card {
    flex: 0 0 250px;
    
  }

  .blogs-hero {
    height: 40vh;
  }

.blogs-hero .blogs-title {
  /* BIGGER MOBILE SIZE: Keeps a strong 3.4rem floor on phones, scales up beautifully */
  font-size: clamp(3.4rem, 11vw, 5.5rem); 
  line-height: 0.95;
  position: relative;
  top: 15px;
}

.blogs-hero .blogs-subtitle {
  /* BIGGER SUBTITLE: Bumped from 1.1rem to 1.4rem so it's easily readable */
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  /* Clear the static negative margin so it doesn't crash into wrapped text */
  margin: 5px auto 0 auto; 
  position: relative;
  top: 15px;
}

  .footer {
    padding: 120px 20px 20px 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .subscribe-inner {
    width: 100%; /* Full width on mobile */
    max-width: 400px; /* Limit for readability */
  }

  .subscribe-title {
    font-size: 2rem;
  }

  .subscribe-text {
    font-size: 1.1rem;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe-input {
    max-width: 100%;
  }
  
  .promotion-box{
	max-width: 300px;
  }
  
  .promotion-content {
    padding: 15px;
  }

  .promotion-title {
    font-size: 1.3rem;
  }

  .promotion-desc {
    font-size: 0.85rem;
  }

  .promotion-icon {
    font-size: 2rem;
  }
.album-container {
        padding: 15px;
      }

      .album-row {
        gap: 8px;
        margin-bottom: 8px;
      }

      /* Row 1: 3 Photos (2 side-by-side, 1 full-width below) */
      .row-3-equal {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
      }

      .row-3-equal .album-photo:nth-child(1),
      .row-3-equal .album-photo:nth-child(2) {
        aspect-ratio: 3 / 4; /* Vertical, side-by-side */
      }

      .row-3-equal .album-photo:nth-child(3) {
        grid-column: 1 / -1; /* Span full width */
        aspect-ratio: 3 / 4; /* Keep 3/4 */
      }

      /* Row 2: 4 Photos (2 side-by-side, 2 side-by-side) */
      .row-4-equal {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
      }

      .row-4-equal .album-photo {
        aspect-ratio: 3 / 4; /* All vertical */
      }

      .row-4-equal .album-photo:nth-child(3) {
        grid-column: 1 / 2; /* First column, second row */
      }

      .row-4-equal .album-photo:nth-child(4) {
        grid-column: 2 / 3; /* Second column, second row */
      }

      /* Row 3: 1 Long (4/3), 1 Vertical (3/4) (stacked, each full-width) */
      .row-1-2-wide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
      }

      .row-1-2-wide .long-photo {
        grid-column: 1 / -1; /* Full-width */
        aspect-ratio: 4 / 3; /* Horizontal */
      }

      .row-1-2-wide .album-photo:not(.long-photo) {
        grid-column: 1 / -1; /* Full-width */
        aspect-ratio: 3 / 4; /* Vertical */
      }

      /* Row 4: 1 Vertical (3/4), 1 Long (4/3) (stacked, each full-width) */
      .row-2-1-wide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
      }

      .row-2-1-wide .album-photo:not(.long-photo) {
        grid-column: 1 / -1; /* Full-width */
        aspect-ratio: 3 / 4; /* Vertical */
      }

      .row-2-1-wide .long-photo {
        grid-column: 1 / -1; /* Full-width */
        aspect-ratio: 4 / 3; /* Horizontal */
      }

      /* Adjust hero section for mobile */
      .blog-hero {
        background-size: cover;
        background-position: center;
        min-height: 300px;
      }

      .hero-content {
        padding: 20px;
      }

	.gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(300px, 0fr));
	}
	
	.gallery-card{
		height: 300px;
	}
	.info-grid {
        grid-template-columns: 1fr;
    }
  .blog-hero {
    height: 50vh;
  }

.blog-title {
    /* Slightly bumped minimum to 3.2rem so long titles look great wrapped */
    font-size: clamp(3.2rem, 8.8vw, 4.5rem); 
    
    /* FIX 1: Forces the two wrapped lines of text tightly together */
    line-height: 0.95; 
    
    /* Adds a tiny bit of separation below the title box if needed */
    margin-bottom: 5px; 
  }

  .blog-sub-title {
    font-size: clamp(1.2rem, 2.6vw, 1.5rem);
    
    /* FIX 2: Relaxed the negative margin slightly so it doesn't crash 
       into the second line of a wrapped title */
    margin: -1.5vw auto 0 auto; 
  }

  .content {
    padding: 30px 65px;
  }

  .image-titled{
    margin: 10px 0 10px 0; /* Top, right, bottom, left margins */
  }

  .image-left,
  .image-right {
    margin: 10px 0;
    max-width: 100%;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 20px;
  }
  
  
}

  

@media (max-width: 660px) {
  .article-image-grid-3 {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
  }

  .article-image-grid-3 img:nth-child(3) {
    grid-column: 1 / -1; /* Third image spans both columns */
  }
	 .blogs-grid {
		grid-template-columns: repeat(auto-fit, minmax(270px, 0fr));
		gap: 10px;
	 }
	 
	 
	 .blog-card{
		height:370px
	 }
	 
	 .destinations-grid {
		grid-template-columns: repeat(auto-fit, minmax(270px, 0fr));
		gap: 10;
	 }
	 
	 .destination-card{
		height:320px
	 }
	 
	  
	.destination-card .destination-title {
	  font-size: 0.9rem;
	  font-weight: 600;
	}
  
	 
	 .gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(270px, 0fr));
	}
	
	.gallery-card{
		height: 270px;
	}
}


@media (max-width: 600px) {
	.gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(450px, 0fr));
	}
	
	.gallery-card{
		height: 450px;
	}
	.blogs-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(330px, 0fr));
	  gap: 30px;
	  justify-content: center;
	}
    .blog-card {
      position: relative;
      height: 330px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	  transition: transform 0.5s ease, box-shadow 0.5s ease;
	  border: 2px solid black;
      overflow: hidden;
	  animation: slideUp 1.2s ease-out forwards;
    }
	
    .blog-card-image {
      width: 100%;
      height: 100%;
	  aspect-ratio: 3 / 4; /* Adjust to your image aspect ratio */
      object-fit: fill;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
	  opacity: 0; /* Start invisible to prevent flash */
	  transition: opacity 2.0s ease; /* Smooth fade-in */
    }
	
	.blog-content {
      position: absolute;
      top: 40%;
      right: 0px;
      background: rgba(255, 255, 255, 0.8);
      padding: 15px;
      text-align: left;
      width: 260px;
	  height: 110px;
      z-index: 2;
	  display: flex;
	  flex-direction: column;
	  justify-content: center; /* Centers content vertically */
    }

.section-title {
  font-size: 2.5em;
}

}



@media (max-width: 575px) { 
	 
	.destinations-grid {
	  grid-template-columns: repeat(auto-fit, minmax(220px, 0fr));
	  gap: 20px;
	} 
	 
	 .destination-card{
		height:250px
	 }
	
	 
}


@media (max-width: 500px) {
  .content {
    padding: 0px 0px;
    font-size: 1.1rem;
	box-shadow: none;
	margin-top: -40px;
  }
  
  .info-box{
	padding: 25px 10px;
  }
  
  .related-blogs-container{
	  margin-top: -40px;
  }
  
  .blog-container {
	  background-color: #fff;
  }
  
  .blog-hero::after {
	   background: #fff; /* Background color below the wave */
  }
  
  .destinations-grid {
	  grid-template-columns: repeat(auto-fit, minmax(180px, 0fr));
  } 
  
  
	 
   .destination-card {
		height:210px;
	}
	
   

}


/* Extra small screens */
    @media (max-width: 480px) {
      .album-container {
        padding: 10px;
      }

      .album-row {
        gap: 6px;
        margin-bottom: 6px;
      }

      .blog-hero {
        min-height: 250px;
      }

.blog-title {
    font-size: clamp(2.4rem, 8.5vw, 3.2rem);
    line-height: 0.95; /* Keep lines tucked together on mobile */
  }

  .blog-sub-title {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    margin: -5px auto 0 auto; 
  }

  .hero .hero-title,
  .hero .hero-title span,
  .hero .hero-subtitle {
    text-shadow: 
      2px 2px 4px rgba(10, 25, 47, 0.95), 
      0px 0px 10px rgba(10, 25, 47, 0.90);
  }
	  
	  .gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(400px, 0fr));
	}
	
	.gallery-card{
		height: 400px;
	}
	 
    }
	
@media (max-width: 430px) {
	 .gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(330px, 0fr));
	}
	
	.gallery-card{
		height: 330px;
	}
	
	.destinations-grid {
	  grid-template-columns: repeat(auto-fit, minmax(160px, 0fr));
	} 
	 
	 .destination-card{
		height:190px
	 }

.blog-title {
    font-size: clamp(2rem, 8.2vw, 2.4rem);
    line-height: 0.95;
  }

  .blog-sub-title {
    font-size: 1rem;
    margin: 0px auto 0 auto; /* Completely reset margin since title height takes care of it */
  }
}

@media (min-width: 420px) and (max-width: 815px) {
  .hero-title {
    font-size: 3.8rem;
  }
    }


@media (max-width: 395px) {
	.destinations-grid {
	  grid-template-columns: repeat(auto-fit, minmax(150px, 0fr));
	} 
	 
	 .destination-card{
		height:180px
	 }

}


@media (max-width: 370px) {
	.blogs-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 0fr));
	 }
	 
	 .blog-card{
		height:280px
	 }
	 
	 
	 .gallery-grid {
	  grid-template-columns: repeat(auto-fit, minmax(280px, 0fr));
	}
	
	.gallery-card{
		height: 280px;
	}
	
	.destinations-grid {
	  grid-template-columns: repeat(auto-fit, minmax(130px, 0fr));
	} 
	 
	 .destination-card{
		height:160px
	 }
	 
	 
}


@media (max-width: 332px) {
	
	.destinations-grid {
	  grid-template-columns: repeat(auto-fit, minmax(240px, 0fr));
	  gap: 30px;
	} 
	 
	 .destination-card{
		height:270px
	 }

 .hero-content {
        padding: 0px;
      }

  .section-title {
  font-size: 2em;
}
	 
}

   .toggle-button {
      color: #74c4de;
      text-decoration: underline;
      cursor: pointer;
    }
    .toggle-content {
      margin-left: 20px;
    }
    .map-responsive {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
    }
    .map-responsive iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .article-image.aspect-horizontal {
      width: 100%;
      height: auto;
      max-width: 800px;
      margin: 0 auto;
      display: block;
    }
    .back-to-top {
      position: fixed;
      top: 20px;
      right: 20px;
      color: #74c4de;
      text-decoration: none;
      font-weight: 700;
      cursor: pointer;
      font-size: 1em;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.9); 
      border: 1px solid #74c4de;
      border-radius: 4px;
      opacity: 0; 
      transition: opacity 0.3s ease; 
      pointer-events: none;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .back-to-top.visible {
      opacity: 1; 
      pointer-events: auto;
    }
    .back-to-top:hover {
      color: #5a9bb0;
      border-color: #5a9bb0;
    }

/* CSS dropdown arrow*/
.dropdown {
  margin: 15px auto; /* Center horizontally */
  max-width: 600px; /* Keeps it compact */
  background: linear-gradient(to bottom, #f0f8ff, #fff); /* Soft sky to sand fade */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 190, 0.15); /* Blue-tinted shadow */
  padding: 1rem; /* Inner padding for container */
  display: flex; /* Center inner elements */
  flex-direction: column;
  align-items: center;
}

.dropdown-toggle {
  font-family: Playfair Display, sans-serif;
  background-color: #f5f5f5;
  border: 1px solid #74c4de;            /* keep your border */
  padding: 8px 12px;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
  transition: background 0.3s ease;
  white-space: nowrap;                 /* NEW: prevents line-break */
  overflow: hidden;                    /* hide any overflow */
  text-overflow: ellipsis;             /* optional: add "…" if it’s still too long */
}

.dropdown-toggle:hover {
  background-color: #e6f7fc;
}

.arrow {
  font-size: .9em;
  transition: transform 0.3s ease;
} 

.arrow.up {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none; /* Ensure content is hidden by default */
  max-width: 500px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #74c4de;
  border-radius: 4px;
  margin-top: 4px;
  font-size: 0.9em;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-content.show {
  display: block; /* Show content when .show is added */
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content p {
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-bottom: 1px solid #eee; /* Subtle separators */
  font-size: 0.95rem;
  color: #333;
}

.dropdown-content p:last-child {
  border-bottom: none;
}

.dropdown-content b {
  color: #74c4de; /* Your blue for highlights */
}

@media (max-width: 600px) {
  .dropdown-toggle {
    font-family: Playfair Display, sans-serif;
    font-size: .9em;
    padding: 6px 10px;
    max-width: 250px;
  }

  .dropdown-content {
    font-family: Playfair Display, sans-serif;
    font-size: 0.8em;
    padding: 8px;
    max-width: 90%;
  }

  .dropdown {
    margin: 10px auto; /* Center on mobile */
  }
}




  /* —— Universal Trail Table —— */
  .trail-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 0.5px solid rgba(0, 0, 0, 0.1);           /* THINNER OUTER BORDER */
  }

  /* ——— Caption: TANGERINE, Centered, Light Blue ——— */
  .trail-table caption {
    font-family: 'Tangerine', cursive;
    font-weight: 700;
    font-size: 2.1rem;
    text-align: center;
    padding: 1.3rem 1rem;
    background: #e6f7fc;
    color: #000;
    caption-side: top;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);    /* THINNER LINE UNDER CAPTION */
  }

  /* ——— Column Headers: Bodoni, NOT CAPS, BOLDER, Centered ——— */
  .trail-table th {
    font-family: 'Bodoni Moda', serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    background: #fff;
    color: #006d8c;
    text-transform: none;
    letter-spacing: 0.5px;
    border: 0.5px solid rgba(0, 0, 0, 0.1);          /* THINNER CELL BORDERS */
    padding: 1rem;
  }

  .trail-table td {
    padding: 1.1rem 1.3rem;
    text-align: left;
    border: 0.5px solid rgba(0, 0, 0, 0.1);          /* THINNER CELL BORDERS */
    color: #000;
  }

  .trail-table tr:nth-child(even) {
    background-color: #fafafa;
  }

  .trail-table tr:hover {
    background-color: #e6f7fc;
    transition: background-color 0.2s ease;
  }

  /* Trail Names: Your blue + Bodoni */
  .trail-table strong {
    color: #74c4de;
    font-weight: 700;
    font-family: 'Bodoni Moda', serif;
  }

  /* Difficulty Badges */
  .badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Bodoni Moda', serif;
    border: 0.5px solid #000;          /* THINNER BADGE BORDER */
  }
  .badge-easy     { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #155724; }
  .badge-moderate { background: linear-gradient(135deg, #fff8e1, #ffecb3); color: #856404; }
  .badge-hard     { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: #721c24; }
  .badge-neutral  { background: linear-gradient(135deg, #e6f7fc, #d0ebff); color: #006d8c; }

  /* Responsive */
  @media (max-width: 768px) {
    .trail-table caption { font-size: 1.8rem; }
    .trail-table th { font-size: 1rem; }
    .trail-table td { font-size: 0.9rem; padding: 0.8rem; }
  }
  @media (max-width: 480px) {
    .trail-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      border-radius: 12px;
    }
  }

  .bullet-spacing-top{
    margin-top: -20px;
  }


  .colored-tip-label {
    color: #51899b;
    font-weight: 600;
  }

/* Light Blue Background with Shadow */

 .light-background-box {
  background-color: #e6f2ff; /* Slightly more visible pale blue, still subtle like a clear winter sky */
  padding: 10px 15px; /* Minimal padding to keep height close to text, adjust sides for subtlety */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Stronger shadow for more pronounced lift-off effect */
  border-radius: 4px; /* Optional subtle rounding for a card-like feel */
  display: inline-block; /* Keeps the width fitted to content, preventing full-width stretch */
}

.light-background-box h3 {
  margin-top: 0; /* Remove extra top margin to minimize height */
}

.light-background-box ul {
  margin-bottom: 0; /* Remove extra bottom margin to minimize height */
}

/* Machu Picchu Timeline */
.mp-timeline-container { max-width:820px; margin:40px auto; padding:0 15px; font-family: 'Playfair Display', serif; }
.mp-timeline { position:relative; max-width:700px; margin:0 auto; }
.mp-timeline::before { content:''; position:absolute; left:28px; top:0; bottom:0; width:3px; background:repeating-linear-gradient(to bottom,#94a3b8 0,#94a3b8 8px,transparent 8px,transparent 16px); }

.mp-step { position:relative; display:flex; gap:25px; margin-bottom:48px; align-items:flex-start; }
.mp-step:last-child { margin-bottom:0; }

.mp-number { 
    width:52px; height:52px; background:#74c4de; color:#1f2937; border-radius:50%; 
    display:flex; align-items:center; justify-content:center; font-size:1.75rem; font-weight:700; 
    flex-shrink:0; box-shadow:0 5px 10px rgba(116,196,222,0.35); z-index:2; 
}

.mp-content { 
    flex:1; background:white; padding:22px 26px; border-radius:12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16),   /* Same darkness as horizontal */
                0 4px 12px rgba(0, 0, 0, 0.08);
    display:flex; flex-direction:column; justify-content:center; min-height:110px; 
}

.mp-content h2 { font-size:1.4rem; font-weight:700; color:#74c4de; margin:0 0 9px 0; }
.mp-content p { font-size:1.02rem; color:#374151; line-height:1.6; margin:0; }

/* Mobile */
@media (max-width:640px) {
    .mp-timeline-container { padding:0 12px; margin:30px auto; }
    .mp-step { gap:18px; margin-bottom:38px; }
    .mp-number { width:46px; height:46px; font-size:1.55rem; }
    .mp-content { padding:20px 22px; min-height:100px; }
    .mp-content h2 { font-size:1.28rem; margin-bottom:8px; }
    .mp-content p { font-size:0.98rem; line-height:1.55; }
    .mp-timeline::before { left:23px; }
}




/* Compact Horizontal Bubbles - IncaRail Classes */
.horizontal-bubbles {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}


.horizontal-bubbles .mp-step {
    margin-bottom: 0;
    flex: 1 1 0;
    /*max-width: 195px;*/
    min-width: 0;
    
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),   /* even softer vertical spread */
                    0 2px 8px rgba(0, 0, 0, 0.06);
}

.horizontal-bubbles .mp-content {
    min-height: auto;
    padding: 18px 18px;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
}

.horizontal-bubbles .mp-content h2 {
    color: #74c4de;
    font-size: 1.12rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;           /* Keeps title at the top */
}

.horizontal-bubbles ul {
    padding-left: 20px;
    margin: 0;
    flex-grow: 1;             /* Pushes bullets down, title stays at top */
}

.horizontal-bubbles li {
    font-size: 0.93rem;
    margin-bottom: 7px;
    line-height: 1.4;
}

/* ==================== MOBILE SMOOTH SCROLL ==================== */
@media (max-width: 1024px) {
    .horizontal-bubbles {
        overflow-x: auto;
        padding-top: 32px;      /* ← more space on top */
        padding-bottom: 32px;   /* ← more space on bottom so shadow isn't cut off */
        padding-left: 20px;     /* ← more space on sides */
        padding-right: 20px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .horizontal-bubbles .mp-step {
        flex: 0 0 195px;
        max-width: 195px;
    }
}
/* Remove the vertical dotted line from the horizontal bubbles only */
.horizontal-bubbles::before {
    display: none !important;
}



/* Button styling */
.subclass-btn {
    margin-top: 12px;
    padding: 10px 16px;
    background-color: #74c4de;
    color: white;
    border: 1px solid #2a7a9e;
    border-radius: 8px;
    font-family: 'Bodoni Moda', serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.subclass-btn:hover {
    background-color: #5aa8c4;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    max-width: 820px;
    width: 92%;
    border-radius: 16px;
    padding: 25px 20px 30px;   /* slightly less side padding */
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    margin: 20px auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.modal-close:hover { color: #000; }

#modal-title {
    text-align: center;
    color: #74c4de;
    margin: 0 0 20px 0;
    font-size: 1.45rem;
}

/* Bubble-style table inside modal - Centered & Mobile Friendly */
.modal-bubble-table {
    width: 100%;
    overflow: hidden;
}

.modal-bubble-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;        /* Prevents stretching */
}

.modal-bubble-table th {
    background: #f8f9fa;
    padding: 12px 8px;
    text-align: center;
    font-size: 1.12rem;
    color: #74c4de;
    border-bottom: 2px solid #eee;
}

.modal-bubble-table td {
    padding: 16px 10px;
    vertical-align: top;
    border-right: 1px solid #eee;
    font-size: 0.92rem;
    line-height: 1.48;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.modal-bubble-table td:last-child {
    border-right: none;
}

.modal-bubble-table strong {
    color: #2a7a9e;
}

#modal-body { max-height: 65vh !important; overflow-y: auto !important; }

/* --- GetYourGuide Responsive Display for MOBILE VS DESKTOP --- */

/* On Desktop: Show the 3-item widget, hide the 1-item widget */
.gyg-mobile-only {
    display: none !important;
}

.gyg-desktop-only {
    display: block;
    margin: 2rem 0;
}

/* On Mobile (Screens 768px and smaller) */
@media screen and (max-width: 768px) {
    /* Hide the 3-item widget */
    .gyg-desktop-only {
        display: none !important;
    }
    
    /* Show the 1-item widget */
    .gyg-mobile-only {
        display: block !important;
        margin: 1.5rem auto;
    }
}

/* The Checklist Circle */
.checklist li {
  position: relative;
  padding-left: 35px;
  list-style: none; /* Removes any default dots */
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid #bdc3c7;
  border-radius: 50%;
}

/* Container setup with asymmetric padding */
.insta-scroll-container {
  display: flex;
  gap: 20px;
  /* Top: 10px | Right/Left: 15px | Bottom: 45px */
  padding: 10px 15px 45px 15px; 
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 1300px;
  margin: 0 auto;
}

/* Updated Polaroid Card to match a wider/longer frame */
.polaroid-card {
  flex: 0 0 270px; /* Slightly wider so the portrait photo looks balanced */
  background: #ffffff;
  padding: 12px 12px 24px 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28), 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Intense shadow transition when hovered */
.polaroid-card:hover {
  transform: translateY(-8px);
  /* Becomes even deeper and spreads out when lifted */
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35), 0 10px 15px rgba(0, 0, 0, 0.22);
}

/* Force images to be longer Instagram Portrait (4:5 Ratio) */
.polaroid-image {
  width: 100%;
  aspect-ratio: 4 / 5; /* Changes from 1:1 square to longer portrait */
  object-fit: cover;
}

/* Simple text spacing */
.polaroid-caption {
  margin: 12px 0 0 0;
  font-size: 0.95em;
  text-align: left;
  font-style: italic;
}

/* Subtle lift effect when hovered */
.polaroid-card:hover {
  transform: translateY(-5px);
}