/* =========================
GENERAL STYLES
========================= */
body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #444;
  margin: 0;
  padding: 0;
}

/* =========================
ABOUT BHUTAN SECTION
========================= */
.about-bhutan-magazine {
  width: 100%;
  background: #dee5df;
  padding: 70px 0;  /* Reduced padding */
  color: #003324;
  font-family: 'Inter', sans-serif;
}

.about-bhutan-magazine .container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
TITLE
========================= */
.about-bhutan-magazine .title {
    text-align: left;
    color: #003324;
    text-transform: uppercase;
    font-family: 'League Spartan';
    font-weight: 800;
    font-size: 1.7em;
    margin-bottom: 10px;
}

/* =========================
LAYOUT (1 ROW, 2 COLUMNS)
========================= */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;  /* Reduced gap */
}

/* =========================
TEXT SECTION (LEFT)
========================= */
.top-text {
  flex: 1;
  padding-top: 20px;
  color: #003324;
  text-align: justify;
  font-size: 1.07rem;  /* Reduced font size */
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
}

/* =========================
IMAGE SECTION (RIGHT) - show entire picture
========================= */
.image-container {
  flex: 1;
  position: relative;
  height: 400px;  /* Reduced height */
}

.overlapping-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;         /* fill column width */
  height: 100%;        /* fill column height */
  object-fit: contain;  /* show entire image without cropping */
  border-radius: 0;     /* remove rounding if you want full image edges */
  z-index: 2;
  border: none;         /* remove white border if you want full view */
  background-color: #dee5df; /* optional, same as section bg to fill empty spaces */
}

/* =========================
READ MORE LINK
========================= */
.read-more-container {
  text-align: center;
  margin-top: 30px;
}

.read-more-link {
  font-size: 16px;  /* Reduced font size */
  font-weight: bold;
  text-decoration: none;
  color: #003324;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  font-family: 'League Spartan', sans-serif;
}

.read-more-link:hover {
  color: #e0b957;
}

.arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 18px;  /* Reduced font size */
  animation: slideArrow 2s infinite alternate;
}

@keyframes slideArrow {
  0% { transform: translateX(0); }
  100% { transform: translateX(15px); }
}

.read-more-link::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(224, 185, 87, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.read-more-link:hover::after {
  animation: boomBlast 1s ease-out infinite;
}

@keyframes boomBlast {
  0% { width: 0; height: 0; opacity: 0.5; }
  50% { width: 120px; height: 120px; opacity: 0.3; }
  100% { width: 200px; height: 200px; opacity: 0; }
}

@media (max-width: 900px) {

  .top-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  /* IMPORTANT: force natural order (image first, then text) */
  .image-container {
    width: 100%;
    height: auto;              /* REMOVE fixed height issue */
    position: relative;
  }

  .overlapping-images {
    position: relative;       /* REMOVE absolute behavior on mobile */
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* FORCE TEXT BELOW IMAGE */
  .top-text {
    order: 2;
    width: 100%;
    padding-top: 0;
  }

  .about-bhutan-magazine .title {
    text-align: center;
  }
}