/* ================= GENERAL ================= */
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #f3f4f6;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(135deg, #6b3f2a, #b07a5a); /* earthy brown tones */
    color: #ffffff;
    padding: 65px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    margin: 0;
    font-size: 2.2rem;
}

.hero p {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.4rem;
}

.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #6b3f2a;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ================= SECTIONS ================= */
.section {
    max-width: 950px;
    margin: 40px auto;
    padding: 0 20px;
}

.section h2 {
    color: #6b3f2a;
    margin-bottom: 10px;
}

.section h3 {
    margin-top: 30px;
    color: #3c3c3c;
}

/* ================= HIGHLIGHT ================= */
.highlight {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

/* ================= IMAGES ================= */
.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.image-row img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Split view for before/after */
.image-row.split {
    flex-wrap: wrap;
}

.image-row.split img {
    max-width: 450px;
}

/* ================= CAPTION ================= */
.caption {
    font-size: 0.95rem;
    color: #555555;
    margin-top: 8px;
}

/* ================= LISTS ================= */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .section {
        margin: 30px auto;
    }

    .image-row {
        flex-direction: column;
    }

    .image-row.split img {
        max-width: 100%;
    }
}

/* ================= MAP SLIDER ================= */ 
.map-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.map-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.map-slider::-webkit-scrollbar {
    display: none;
}

.map-slider img {
    flex: 0 0 auto;
    width: 420px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ================= SLIDER BUTTONS ================= */
.slider-btn {
    background: #6b3f2a;
    color: #ffffff;
    border: none;
    font-size: 22px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: #8a563c;
}

.slider-btn.left {
    margin-right: 10px;
}

.slider-btn.right {
    margin-left: 10px;
}''
