/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Cormorant Garamond", sans-serif;
  overflow-x: hidden;
  font-weight: 400;
}

/* Google Fonts - consolidated */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Roboto+Condensed:wght@400&display=swap');

/* ===== Navbar ===== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}
.navbar.static {
  position: relative;
  background: #000;
}

.nav-container {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-logo img {
  height: 130px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: 0.3s ease;
}
.nav-links a:hover {
  color: #f5c842;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  background: #fff;
  height: 2px;
  width: 25px;
  border-radius: 5px;
  transition: 0.3s;
}

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(88, 88, 88, 0.2);
  min-width: 200px;
  padding: 0;
  z-index: 100;
  flex-direction: column;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  margin-top: 20px !important;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.dropdown-menu li a:hover {
  background: #f5c842;
  color: #ffffff;
}
.dropdown:hover .dropdown-menu { display: flex; }

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-content {
  position: absolute;
  bottom: 20px;
  left: 60px;
  z-index: 2;
  max-width: 600px;
  animation: fadeIn 2s ease;
}

.hero-title {
  font-size: 100px;
  line-height: 110px;
  font-weight: 500;
  letter-spacing: 10px;
  color: #fff;
}

.hero-subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Video button */
.video-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
}
.video-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.05); }

/* Background video and overlay */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

/* ===== Keyframes ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 60px; line-height: 70px; }
  .hero-subtitle { font-size: 16px; }
  .hero-content { bottom: 40px; left: 30px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 45px; line-height: 55px; }
  .hero-content { bottom: 30px; left: 20px; }
  .hero-buttons { flex-direction: column; gap: 20px; }
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;&family=Roboto+Condensed:wght@400&display=swap');

/* Section Container */
.why-choose-bhutan {
  position: relative;
  width: 100%;
  min-height: 450px;
  background: url('../images/Image\ 69.JPEG') center/cover fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay */
.why-choose-bhutan .background-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Text Content */
.why-choose-bhutan .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
  margin-bottom: 45px !important;
}

/* Title Styling */
.why-choose-bhutan .title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 40px;
}

/* Paragraph Styling */
.why-choose-bhutan .description {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
}

/* Button Styling */
.learn-more {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #f5b800;
  transition: 0.3s ease;
  
}

.learn-more:hover {
  color: #f5b800;
  border-color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-bhutan {
    padding: 60px 20px;
  }

  .why-choose-bhutan .title {
    font-size: 1.6rem;
  }

  .why-choose-bhutan .description {
    font-size: 15px;
    line-height: 26px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;&display=swap');

/* ===== Why Choose Travel Finder Tours Section ===== */
.why-choose-tft {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  box-sizing: border-box;
}

/* Layout Container */
.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  width: 100%;
  gap: 40px;
}

/* Text Content */
.why-text {
  flex: 1 1 500px;
  color: #000000;
  animation: fadeInLeft 1.5s ease-in-out;
}

.why-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.why-description {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 20px;
  max-width: 650px;
}

/* Image Styling */
.why-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1.5s ease-in-out;
}

.why-image img {
  width: 100%;
  height: auto;
 
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.why-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .why-description {
    font-size: 15px;
    line-height: 26px;
  }

  .why-image img {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .why-title {
    font-size: 1.6rem;
  }
}



/* ===== Tour Packages Section Styling ===== */
.tour-packages {
  background-color: #e2e2e2;
  padding: 60px 0;
  overflow: hidden;
 
}

/* Container: two columns on desktop, stacked on small screens */
.tour-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  flex-wrap: nowrap;
}

/* Left carousel column */
.tour-carousel {
  flex: 0 1 82%;      /* take about 62% width but allow shrinking */
  min-width: 600px;   /* ensures carousel doesn't collapse and push text */
  position: relative; /* for owl-nav absolute positioning */
}

/* Right text column */
.tour-text {
  flex: 0 1 34%;      /* about 34% width */
  min-width: 260px;   /* ensures readable text box */
  max-width: 420px;
 
}

/* Text styling */
.tour-text .title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: #000;
  line-height: 1.3;
  margin-bottom: 18px;
}

.tour-text .quote {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

/* Button */
.tour-text .learn-more {
 
 




  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #f5b800;
  transition: 0.3s ease;
}
.tour-text .learn-more:hover {
    color: #f5b800;
  border-color: #fff;
}







/* Package cards (unchanged core styling) */
.package-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease;
}

.package-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover img {
  transform: scale(1.05);
}

.package-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-top: 12px;
  text-transform: uppercase;
}

/* Owl controls (unchanged) */
.owl-dots { display: none; }

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* let buttons themselves handle pointer */
}
.owl-nav button {
  pointer-events: auto;
  
  color: #ffffff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 50px !important;
  line-height: 22px;
  transition: all 0.3s ease;
}


/* Responsive: stack on smaller screens */
@media (max-width: 992px) {
  .tour-container {
    flex-direction: column-reverse; /* text first on mobile if you prefer; swap if needed */
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 20px;
  }

  .tour-carousel, .tour-text {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }

  .package-card img {
    height: 360px;
  }

  .tour-text .title {
    font-size: 1.6rem;
    text-align: center;
  }

  .tour-text .quote {
    text-align: center;
  }

  .tour-text .learn-more {
    display: inline-block;
    margin: 0 auto;
  }
}







/* ===== Destination Section ===== */
.destination-section {
  background: #091300;
  padding: 50px 8%;
  margin-top: 0 !important;
  margin-bottom: 50px !important;
}

/* ===== Section Title Styling ===== */
.section-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 80px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

/* ===== Learn More Button ===== */
.learn-more-btn {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #f5b800;
  transition: 0.3s ease;
  display: inline-block;
  margin-top: 5px;
}

.learn-more-btn:hover {
  color: #f5b800;
  border-color: #fff;
}

/* ===== Destination Cards Grid ===== */
.destination-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
  margin-bottom: 80px !important;
}

/* ===== Destination Card ===== */
.destination-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:nth-child(1),
.destination-card:nth-child(3) {
  transform: translateY(-20px);
}

.destination-card:nth-child(2) {
  transform: translateY(20px);
}

/* Hover Effect */
.destination-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ===== Image Styling ===== */
.destination-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

/* White Border Overlay */
.destination-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  z-index: 2;
  pointer-events: none;
}

/* Dark Overlay */
.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.4s ease;
  z-index: 1;
}

.destination-card:hover .overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* ===== Text Content ===== */
.destination-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 3;
}

.destination-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}

.destination-content p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Show description on hover */
.destination-card:hover .destination-content p {
  opacity: 1;
  max-height: 200px;
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablets */
@media (max-width: 992px) {
  .destination-section {
    padding: 40px 6%;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 60px;
  }

  .destination-card img {
    height: 350px;
   
  }

  .destination-content h3 {
    font-size: 20px;
  }

  /* Remove stagger effect */
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(3) {
    transform: none;
  }

  .destination-card:hover {
    transform: translateY(-8px);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .destination-section {
    padding: 40px 5%;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .destination-card img {
    height: 280px;
  }

  .destination-content {
    bottom: 15px;
    left: 15px;
    right: 15px;
    text-align: center;
  }

  .destination-content h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .destination-content p {
    font-size: 15px;
  }

  .learn-more-btn {
    font-size: 16px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .destination-section {
    padding: 35px 4%;
  }

  .destination-card img {
    height: 220px;
  }

  .destination-content h3 {
    font-size: 18px;
  }

  .learn-more-btn {
    font-size: 15px;
  }

  .destination-content p {
    font-size: 14px;
  }
}


/* ===== Blog Section ===== */


.blog-section {
  padding: 80px 10%;
  text-align: center;
  background-color: #ffffff;
  margin-bottom: 70px !important;
}

.blog-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.blog-card {
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 0;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.image-container {
  overflow: hidden;
}

.image-container img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
  height: auto;
  object-fit: cover;
}

.blog-card:hover .image-container img {
  transform: scale(1.1);
}

.card-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin: 20px 0 10px 0;
  color: #000000;
}

.card-description {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  margin: 0 20px 30px 20px;
  color: #000000;
}

.discover-btn {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #f5b800;
  transition: 0.3s ease;
  display: inline-block;
  padding: 5px 0;
  transition: color 0.3s, border-color 0.3s;
  margin-bottom: 20px;
  align-items: center;
  
}

.discover-btn:hover {
  color: #f5b800;
  border-color: #fff;
}

/* ===== Image Height Customization ===== */
.card-tall img {
  height: 400px;
  object-fit: cover;
  padding-top: 40px !important;
  
}

.card-short img {
  height: 350px;
  object-fit: cover;
  border: 1px  solid #000000;
  
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .blog-section {
    padding: 60px 8%;
  }
}

@media (max-width: 992px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .blog-card {
    max-width: 90%;
  }

  .card-tall img,
  .card-short img {
    height: 320px;

  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-description {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 50px 5%;
  }

  .blog-title {
    font-size: 1.6rem;
  }

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

  .card-description {
    font-size: 14px;
    line-height: 24px;
  }

  .discover-btn {
    font-size: 16px;
  }

  .card-tall img{
    height: 250px;
  }
  .card-short img {
    height: 250px;
    padding-top: 20px;
  }
}



/* ===== Contact Us Section ===== */
.contact-us-section {
  width: 100%;
  padding: 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  
}

.contact-us-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  width: 100%;
  padding: 40px 0;

  
  
}

/* Media Blocks */
.contact-media {
  position: relative;
  overflow: hidden;

  transition: all 0.5s ease;
}

/* Left and Right Images - Shorter Width */
.contact-media.left,
.contact-media.right {
  flex: 1 1 25%;
  max-width: 350px;
  height: 400px;
 
}

/* Center Video - Longer and Wider */
.contact-media.center {
  flex: 1 1 45%;
  max-width: 600px;
  height: 600px;
  position: relative;
}

/* Media Elements */
.contact-media img,
.contact-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 0px !important;
 
 
}

/* Hover Zoom Effect */
.contact-media:hover img,
.contact-media:hover video {
  transform: scale(1.05);
}

/* Overlay on Center Video */
.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Title */
.contact-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Social Icons */
.contact-icons {
  display: flex;
  gap: 20px;
}

.contact-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-icons a:hover {
  color: #d4af37;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-us-container {
    flex-direction: column;
    gap: 25px;
  }

  .contact-media.left,
  .contact-media.right,
  .contact-media.center {
    max-width: 90%;
    height: auto;
  }

  .contact-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 1.6rem;
  }

  .contact-icons a {
    font-size: 1rem;
  }
}



















/* Scoped to #bhutan-blog-section */
#bhutan-blog-section {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  background-color: #ffffff;
  padding: 0;
  margin-top: -90px !important;
}

/* Hero Section */
#bhutan-blog-section .blog-hero {
  position: relative;
  height: 50vh;
  background-image: url('../images/home-2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#bhutan-blog-section .hero-overlay {
  position: center;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
}

#bhutan-blog-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

#bhutan-blog-section .hero-content h1 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
  position: center;
  text-transform: uppercase;
}

#bhutan-blog-section .hero-content p {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  position: center;

}
/* Read More Button */
#bhutan-blog-section .read-more {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #f5b800;
  transition: 0.3s ease;
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
}

#bhutan-blog-section .read-more:hover {
  color: #f5b800;
  border-color: #fff;
}


/* Blog Container */
#bhutan-blog-section .blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Blog Item */
#bhutan-blog-section .blog-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

#bhutan-blog-section .blog-item.reverse {
  flex-direction: row-reverse;
}

#bhutan-blog-section .blog-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;

  transition: transform 0.5s ease;
   border: 2px  solid #000000;
}

#bhutan-blog-section .blog-item:hover .blog-image {
  transform: scale(1.05);
}

#bhutan-blog-section .blog-content {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);

  padding: 25px;
 
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#bhutan-blog-section .blog-item:hover .blog-content {
  transform: translateY(-5px);
  
}

#bhutan-blog-section .blog-content h2 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase;
}

#bhutan-blog-section .blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

/* Responsive */
@media(max-width: 900px){
  #bhutan-blog-section .blog-item,
  #bhutan-blog-section .blog-item.reverse {
    flex-direction: column;
  }

  #bhutan-blog-section .blog-image,
  #bhutan-blog-section .blog-content {
    width: 100%;
  }
}


















/* ===== Footer Section ===== */
.footer-section {
  background-color: #091300;
  color: #fff;
  padding: 80px 10%;
  font-family: "Cormorant Garamond", sans-serif;
  position: relative;
 
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}


/* Left Side */
.footer-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-description {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
}

.footer-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #f5b301;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* Middle & Right Columns */
.footer-heading {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-middle ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
  margin-bottom: 10px;
}

.footer-middle ul li a,
.footer-right ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-middle ul li a:hover,
.footer-right ul li a:hover {
  color: #f5b301;
}

.social-links i {
  margin-right: 8px;
  font-size: 15px;
}

/* ===== Footer Bottom Styling ===== */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #fff;
  margin-top: 30px !important;
}

/* Footer text */
#footer-copyright,
#footer-credit {
  margin: 5px 0;
  color: #ccc;
  font-size: 14px !important;
}

/* Footer links */
#footer-travel-link,
#footer-abit-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-size: 10px !important;
}

/* Hover effect */
#footer-travel-link:hover,
#footer-abit-link:hover {
  color: #f4b400; /* gold accent */
  text-shadow: 0 0 6px rgba(244, 180, 0, 0.4);
}

/* Optional subtle animation for crafted text */
.crafted {
  font-style: normal;
  letter-spacing: 0.5px;
}


/* Logos */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;

  flex-wrap: wrap;
}

/* ===== Footer Left Logo ===== */
#footer-logo-main {
  height: 120px !important; /* adjust as needed */
  
  opacity: 0.9;
  transition: all 0.3s ease;
}

#footer-logo-main:hover {
  opacity: 1;
  transform: scale(1.05);
}


#footer-logo-google {
  height: 60px;
  opacity: 0.85;
}

#footer-logo-trip {
  height: 35px;
  opacity: 0.85;
}

/* Hover effects */
.footer-logos a img:hover {
  opacity: 1;
  transform: scale(1.05);
  transition: all 0.3s ease;
}


.footer-logos img:hover {
  opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}



