/* Small hero for inner pages */
.hero-kilimanjaro {
  height: 60vh;
background: url('../assets/images/packages/machameroute.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-kilimanjaro .hero-content h1 {
  font-size: 45px;
}
.hero-kilimanjaro .hero-content p {
  font-size: 18px;
}



/* General Reset & Background */
body {
    font-family: Arial, sans-serif;
    background-color: #fdfaf4;
    margin: 0;
    padding: 20px;
    color: #333;
}

.kilimanjaro-container1 {
    
    display: flex;
    max-width: 1100px;
    margin: 50px auto;
}

/* Sidebar */
.sidebar {
    width: 200px;
    padding-right: 20px;
}

.sidebar h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.sidebar label {
    display: block;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Main Content & Banner */
.content {
    flex-grow: 1;
}

.content-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.info-banner {
    background-color: #4a5d3e;
    color: white;
    padding: 15px;
    font-size: 13px;
    margin-bottom: 30px;
}

/* Trip Card Layout */
.trip-card {
    display: flex;
    background: #eae3d5; /* Light tan background */
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 400px;
}

.image-container img {
    width: 100%;
    display: block;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    border-radius: 50%;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.details {
    padding: 20px;
    flex-grow: 1;
}

.details h2 {
    font-size: 16px;
    margin-top: 0;
}

.details ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 13px;
    margin: 15px 0;
}

.view-btn {
    background-color: #2b3a24;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
}

/* Red Price Badge */
.price-tag {
    background: #d9534f;
    color: white;
    width: 160px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.price-tag span { font-size: 10px; }
.price-tag strong { font-size: 18px; }



.kili-prep {
    background-color: #ece4d9;
    padding: 80px 10%;
    color: #333;
}

.prep-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Thumbnail Styling */
.kili-video-box {
    position: relative;
    width: 100%;
    margin: 30px 0 50px;
    cursor: pointer;
}

.kili-video-box img {
    width: 100%;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-overlay-text {
    position: absolute;
    top: 20px; left: 20px;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    font-family: 'Arial Black', sans-serif;
}

.youtube-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.5rem;
}

/* Typography & Lists */
.prep-title {
    color: #4a6741;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.routes-overview {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.9;
}

/* Giant Torn Mask */
.torn-mask-giant {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    /* Extra irregular polygon for the most "torn" look yet */
    clip-path: polygon(
        50% 0%, 75% 3%, 90% 12%, 98% 35%, 100% 60%, 
        92% 85%, 75% 97%, 50% 100%, 25% 97%, 8% 85%, 
        0% 60%, 2% 35%, 10% 12%, 25% 3%
    );
}

.torn-mask-giant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Slight zoom for dramatic effect */
}


/* Container Styling */
.kili-routes-detail {
    background-color: #4a6741;
    color: white;
    padding: 80px 10%;
}

.routes-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
.white-heading {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.handwritten-title {
    font-family: 'Architects Daughter', cursive; /* Use the brand's handwritten font */
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.routes-text-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.pro-con {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
}

/* Map Image Styling */
.route-map-box {
    margin: 25px 0;
    width: fit-content;
}

.route-map-box img {
    border: 5px solid rgba(255,255,255,0.2); /* Subtle frame */
    max-width: 300px;
    display: block;
}

.map-caption {
    display: block;
    font-size: 0.75rem;
    margin-top: 8px;
    font-style: italic;
    opacity: 0.8;
}

/* The Torn Circle Forest Image */
.torn-circle-forest {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    position: sticky; /* Keeps the image visible while reading long text */
    top: 50px;
    clip-path: polygon(
        50% 0%, 72% 4%, 88% 15%, 97% 35%, 100% 55%, 
        95% 78%, 82% 92%, 55% 100%, 28% 95%, 10% 82%, 
        2% 58%, 5% 35%, 15% 15%, 32% 4%
    );
}

.torn-circle-forest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.kili-practical-info {
    background-color: #ffffff;
    padding: 60px 20px;
    color: #333;
}

.info-container-narrow {
    max-width: 800px; /* Narrower width for optimal reading experience */
    margin: 0 auto;
}

.brand-h3 {
    font-family: 'Architects Daughter', cursive; /* Use the brand's handwritten font */
    color: #4a6741; /* Brand Sage Green */
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Full Width Image within the Container */
.full-width-img {
    margin: 40px 0;
    width: 100%;
}

.full-width-img img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Costs List Styling */
.costs-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.costs-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.costs-list li::before {
    content: "•";
    color: #cc4e2b; /* Brand Burnt Orange */
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.inline-link {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}
