






/* ===== ZIG-ZAG SECTION ===== */
.zigzag-section {
  padding: 80px 5%;
   background: #ffffff;
  font-family: "Cormorant Garamond", serif;
  color: #111;
  overflow: hidden; /* hide overflow for animations */
  position: relative;
}

.zigzag-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.zigzag-section.alt .zigzag-container {
  grid-template-columns: 1.3fr 1fr;
}

/* IMAGE */
.zigzag-image {
  position: relative;

  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateX(-40px);
  opacity: 0;
  transition: all 1s ease;
}

.zigzag-section.alt .zigzag-image {
  transform: translateX(40px);
}

.zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.zigzag-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Floating Shapes */
.zigzag-image::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
 

  top: 10%;
  left: -30px;
  z-index: 1;
  transform: rotate(15deg);
}

/* CONTENT */
.zigzag-content {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 30px;
 
 
  z-index: 2;
  transform: translateX(40px);
  opacity: 0;
  transition: all 1s ease;
}

.zigzag-section.alt .zigzag-content {
  transform: translateX(-40px);
}

.zigzag-title {
  font-size: clamp(2rem, 4vw, 2.5rem); /* responsive scaling */
  font-weight: 400; /* bold title */
  letter-spacing: 1.5px; /* slightly wider spacing for magazine look */
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
font-size: 22px;
  background: linear-gradient(90deg, #000000, #000000);
  -webkit-background-clip: text; /* Safari & Chrome */
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Standard for Firefox & Edge */
  color: transparent;
}


.zigzag-content p, .zigzag-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 400;
  color: #111;
  font-size: 16px;
  line-height: 1.8rem;
  margin-bottom: 20px;
}

.zigzag-content p.visible, 
.zigzag-list li.visible,
.zigzag-image.visible,
.zigzag-content.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* List styling */
.zigzag-list {
  list-style: disc;
  margin-left: 20px;
}

.zigzag-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
  padding-left: 15px;
}

.zigzag-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
 
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .zigzag-container { grid-template-columns: 1fr; text-align: center; }
  .zigzag-section.alt .zigzag-container { grid-template-columns: 1fr; }
  .zigzag-image, .zigzag-content { order: unset; }
  .zigzag-title { font-size: 2rem; }
  .zigzag-list { margin-left: 0; padding-left: 0; }
  .zigzag-list li::before { left: 50%; transform: translateX(-50%); top: 0.5em; }
}

/* 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); }
}







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

/* Section styling */
.sdf-section {
  position: relative;
  
  background-image: url('../images/Image\ 69.JPEG');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark glass overlay */
.sdf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Content container */
.sdf-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

/* Title (your exact font specifications) */
.sdf-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;
}

/* Cards (for each tourist type) */
.sdf-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.sdf-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 20px 30px;
 
  min-width: 230px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
}

.sdf-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-6px);
}

/* Card heading */
.sdf-card h3 {
  font-family: "Cormorant Garamond", sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Card subtext */
.sdf-card p {
  font-family: "Cormorant Garamond", sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

/* Description paragraph (your exact font specs) */
.sdf-description {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
  margin-top: 20px;
}













/* ===== National Identity of Bhutan Section ===== */
.national-identity {
  
  padding: 80px 20px;
  font-family: 'Playfair Display', serif;
  color: #1b1b1b;
  position: relative;
  overflow: hidden;

}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.identity-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Left side: decorative overlay */
.identity-left {
  flex: 1 1 400px;
  height: 400px;
  background: url('../images/Marcus\ Westberg\ _\ Thimphu58.jpg') center/cover no-repeat;
  position: relative;
  
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  overflow: hidden;
}

.identity-left .overlay-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  pointer-events: none;
}

/* Right side: text content */
.identity-right {
  flex: 1 1 500px;
}

.identity-right h2 {
  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;
  margin-top: 40px;
  font-size: 22px;






}





.identity-right p {
font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
  text-align: justify;
}

/* Premium touches */
.identity-right p strong {
  color: #000000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .identity-grid {
    flex-direction: column;
  }

  .identity-left {
    height: 300px;
  }

  .identity-left .overlay-text {
    font-size: 4rem;
  }
}



.state-two-column {
  font-family: 'Cormorant Garamond', serif;
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Columns Layout */
.columns-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.left-column, .right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Section Header */
.state-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
  font-size: 22px !important;
}

.state-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

/* Accordion Cards */
.accordion-card {
  background: #fff;

  overflow: hidden;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.accordion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.accordion-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.accordion-btn img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  
  transition: transform 0.3s ease;
}

.accordion-card.active .accordion-btn img {
  transform: scale(1.05);
}

/* Accordion Indicator */
.accordion-btn::after {
  content: '+';
  position: absolute;
  right: 30px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-card.active .accordion-btn::after {
  content: '-';
  transform: rotate(180deg);
}

/* in your .accordion-content block */
.accordion-content {
  height: 0;
  overflow: hidden;
  padding: 0 30px;
  background: #f5f8fa;
  transition: height 0.4s ease, padding 0.4s ease;
  font-weight: 400; /* <-- fix here (no px) */
}

.accordion-btn span {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
}
.accordion-content p {
  margin: 15px 0;
  line-height: 1.8;
  color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
  .columns-wrapper {
    flex-direction: column;
  }
}







/* ===== BANKS & CURRENCY STYLES ===== */
.banks-currency-section {
  position: relative;
  background: url('../images/dest-2.jpg') center/cover no-repeat;
  padding: 100px 20px;
  font-family: "Cormorant Garamond", serif;
  overflow: hidden;
}

/* DARK OVERLAY */
.banks-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.65);
  z-index: 1;
}

/* MAIN CONTAINER */
.banks-currency-section .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* TWO-COLUMN LAYOUT */
.banks-layout {
  display: flex;
  gap: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  
  padding: 100px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* LEFT COLUMN */
.banks-text {
  flex: 0 0 50%;
  color: #fff;
}

.banks-text h2 {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.banks-text p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.banks-text ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}
.banks-text ul li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 17px;
}
.banks-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c59f3b;
  font-size: 1.3rem;
  line-height: 1;
}

/* RIGHT COLUMN */
.banks-carousel-wrapper {
  flex: 0 0 50%;
}

/* PREMIUM GLASS CARDS */
.card-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
}
.card-glass:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(197, 159, 59, 0.25);
}
.card-glass img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0.95);
}
.card-glass h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.card-glass p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* CAROUSEL DOTS */
.owl-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.owl-carousel .owl-dot.active span {
  background: #c59f3b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .banks-layout {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }
  .banks-text,
  .banks-carousel-wrapper {
    flex: 1 1 100%;
  }
  .banks-text h2 {
    font-size: 1.8rem;
  }
}













.flora-fauna-section {
   background: #ffffff;
  font-family: "Cormorant Garamond", serif;
  padding: 80px 20px;
}

.flora-fauna-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.flora-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #f7f7f7;
  
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* LEFT COLUMN */
.flora-text {
  flex: 1;
  background: #f2f2f2;
  padding: 60px 50px;
  position: relative;
}

.flora-text::before {
  content: '';
  position: absolute;
  background: url('assets/images/leaf-pattern.png') no-repeat center left;
  background-size: contain;
  opacity: 0.05;
  top: 20px;
  bottom: 20px;
  left: 0;
  right: 0;
}

.flora-text h2 {

  
  color: #000;
 

  position: relative;
font-size: 22px;

    font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  
  
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.flora-text p, 
.flora-text ul {
  color: #000000;

 
  margin-bottom: 20px;
    font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;

  
  font-size: 16px;
  line-height: 29px;
 
}

.flora-text ul {
  padding-left: 20px;
}

.flora-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}


/* BUTTON */
.btn-premium {
  display: inline-block;
  padding: 10px 30px;
  border: 1.5px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 15px;
}
.btn-premium:hover {
  background: #000;
  color: #fff;
}

/* RIGHT COLUMN */
.flora-image {
  flex: 1;
  position: relative;
}
.flora-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .flora-wrapper {
    flex-direction: column;
  }
  .flora-text, .flora-image {
    flex: unset;
    width: 100%;
  }
  .flora-text {
    padding: 40px 30px;
    text-align: center;
  }
  .btn-premium {
    padding: 10px 25px;
    font-size: 14px;
  }
}











/* ===== TREKKING SPOTS STYLES ===== */
.trekking-section {
  position: relative;
  background: url('../images/Image\ 69.JPEG') center/cover no-repeat;
  padding: 100px 20px;
  font-family: "Cormorant Garamond", serif;
  overflow: hidden;
}

/* Dark overlay */
.trek-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.65);
  z-index: 1;
}

/* Content container */
.trekking-section .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.trekking-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
 
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* LEFT COLUMN */
.trekking-text {
  flex: 1;
  color: #000000;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trekking-text h2 {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  margin-top: 40px;
}

.trekking-text p {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
}

/* RIGHT COLUMN (SWIPER) */
.trekking-slider {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.trek-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: left;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.trek-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.trek-card h3 {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 19px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.trek-card p {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 29px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trekking-wrapper {
    flex-direction: column;
  }

  .trekking-text,
  .trekking-slider {
    width: 100%;
    padding: 40px 30px;
  }

  .trek-card {
    padding: 30px 20px;
  }
}



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

/* === Bhutan Section === */
.bhutan-section {
 
  padding: 80px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Container === */
.bhutan-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

/* === Card === */
.bhutan-section .card {
  position: relative;
  
  
  padding: 40px;
  
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* === Accent Line === */
.bhutan-section .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ffb347, #ff6a88);
  
}

/* === Hover Effect === */
.bhutan-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2,6,23,0.7);
}

/* === Title === */
.bhutan-section .card h2 {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 1.1;
}

/* === Paragraph === */
.bhutan-section .card p {
  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: 40px;
  text-align: left;
}

/* === List === */
.bhutan-section .card ul {
  margin: 0 0 30px 18px;
  padding: 0;
  list-style: none;
}

.bhutan-section .card ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  line-height: 29px;
}

.bhutan-section .card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #ffb347;
}

/* === Highlighted Text === */
.bhutan-section .card strong {
  color: #000000;
  font-weight: 600;
}

/* === Responsive === */
@media (max-width: 768px) {
  .bhutan-section {
    padding: 50px 6%;
  }

  .bhutan-section .card {
    padding: 28px;
  }

  .bhutan-section .card h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 24px;
  }

  .bhutan-section .card p,
  .bhutan-section .card ul li {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
  }

  .bhutan-section .card ul {
    margin-left: 0;
    padding-left: 0;
  }

  .bhutan-section .card ul li::before {
    left: 50%;
    transform: translateX(-160%);
  }
}












.cultural-immersion {
  position: relative;
  background: url('../images/home-2.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 5%;
  font-family: "Cormorant Garamond", serif;
  overflow: hidden;
}

.cultural-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.cultural-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.cultural-title {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cultural-intro {
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.cultural-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.cultural-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
 
  padding: 25px;
  text-align: left;
  backdrop-filter: blur(8px);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.cultural-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cultural-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 400;
}

.cultural-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media screen and (max-width: 768px) {
  .cultural-cards {
    grid-template-columns: 1fr;
  }
}




.weather-climate-section {
  background: #ffffff;
  font-family: "Cormorant Garamond", serif;
  padding: 80px 20px;
}

.weather-climate-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.weather-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #f7f7f7;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);

  /* IMAGE LEFT, TEXT RIGHT */
  flex-direction: row;
}

/* LEFT COLUMN: IMAGE */
.weather-image {
  flex: 1;
  position: relative;
}
.weather-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT COLUMN: TEXT */
.weather-text {
  flex: 1;
  background: #f2f2f2;
  padding: 60px 50px;
  position: relative;
}

.weather-text::before {
  content: '';
  position: absolute;
  background: url('assets/images/leaf-pattern.png') no-repeat center left;
  background-size: contain;
  opacity: 0.05;
  top: 20px;
  bottom: 20px;
  left: 0;
  right: 0;
}

.weather-text h2 {
  color: #000;
  position: relative;
  font-size: 22px;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.weather-text p, 
.weather-text ul {
  color: #000000;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 29px;
}

.weather-text ul {
  padding-left: 20px;
}

.weather-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

/* BUTTON */
.btn-premium {
  display: inline-block;
  padding: 10px 30px;
  border: 1.5px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 15px;
}
.btn-premium:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .weather-wrapper {
    flex-direction: column;
  }
  .weather-text, .weather-image {
    flex: unset;
    width: 100%;
  }
  .weather-text {
    padding: 40px 30px;
    text-align: center;
  }
  .btn-premium {
    padding: 10px 25px;
    font-size: 14px;
  }
}
