/* =========================================
ABOUT PAGE
LITTLE MONKS SAFARIS
========================================= */

:root {
    --dark: #111714;
    --dark-soft: #18201b;
    --green: #506b4f;
    --green-dark: #344b37;
    --gold: #c5a46d;
    --cream: #f5f1e8;
    --white: #ffffff;
    --text: #273029;
    --muted: #747b75;
    --border: rgba(39, 48, 41, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================
NAVIGATION
========================================= */

.about-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: var(--white);
}

.about-nav {
    max-width: 1400px;
    margin: auto;
    padding: 25px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-logo {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
}

.about-logo span {
    display: block;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 7px;
}

.about-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    opacity: .9;
}

.about-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .3s ease;
}

.about-links a:hover::after,
.about-links a.active::after {
    width: 100%;
}

.about-nav-btn {
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    transition: .3s ease;
}

.about-nav-btn:hover {
    background: var(--white);
    color: var(--dark);
}

.about-menu {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 22px;
}


/* =========================================
HERO
========================================= */

.about-hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=2200&q=90")
        center/cover;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10,15,12,.82),
            rgba(10,15,12,.35),
            rgba(10,15,12,.25)
        );
}

.about-hero-content {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 120px 8% 70px;
}

.about-hero-content span,
.about-intro > span,
.story-content > span,
.section-heading > span,
.why-content > span,
.responsible-content > span,
.safety-heading > span,
.company-section > .section-heading > span,
.about-cta-content > span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 600;
}

.about-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 7vw, 92px);
    line-height: 1.05;
    font-weight: 500;
    margin: 25px 0;
}

.about-hero-content p {
    max-width: 550px;
    font-size: 16px;
    font-weight: 300;
    opacity: .9;
}


/* =========================================
INTRO
========================================= */

.about-intro {
    max-width: 950px;
    margin: auto;
    padding: 130px 30px;
    text-align: center;
}

.about-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.15;
    font-weight: 500;
    margin: 18px 0 30px;
}

.about-intro p {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 18px;
}


/* =========================================
STORY
========================================= */

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background: var(--dark);
    color: white;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2,
.why-content h2,
.safety-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 500;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.story-content p {
    max-width: 570px;
    color: rgba(255,255,255,.7);
    margin-bottom: 18px;
}


/* =========================================
SERVICES
========================================= */

.about-services {
    padding: 130px 6%;
    background: var(--cream);
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.1;
    margin: 18px 0;
    font-weight: 500;
}

.section-heading p {
    color: var(--muted);
}

.about-service-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.about-service-card {
    background: var(--cream);
    padding: 45px 38px;
    min-height: 330px;
    transition: .4s ease;
}

.about-service-card:hover {
    background: white;
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(197,164,109,.4);
    border-radius: 50%;
    margin-bottom: 25px;
}

.about-service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    margin-bottom: 12px;
}

.about-service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.about-service-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
WHY US
========================================= */

.why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
}

.why-image img {
    height: 100%;
    min-height: 750px;
    object-fit: cover;
}

.why-content {
    padding: 100px 10%;
}

.why-content h2 {
    color: var(--dark);
}

.why-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid var(--border);
}

.why-number {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
    padding-top: 4px;
}

.why-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 7px;
}

.why-item p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================================
RESPONSIBLE TOURISM
========================================= */

.responsible-section {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(18,27,21,.83), rgba(18,27,21,.83)),
        url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=2200&q=85")
        center/cover;
    color: white;
}

.responsible-content {
    max-width: 850px;
    margin-left: 10%;
    padding: 90px 30px 90px 0;
}

.responsible-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    font-weight: 500;
    margin: 20px 0 30px;
}

.responsible-content p {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    margin-bottom: 18px;
}

.responsible-content .text-link {
    color: var(--gold);
}


/* =========================================
SAFETY
========================================= */

.safety-section {
    padding: 130px 8%;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    background: var(--cream);
}

.safety-heading h2 {
    color: var(--dark);
}

.safety-content > p {
    max-width: 650px;
    color: var(--muted);
    margin-bottom: 45px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.safety-grid > div {
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.safety-grid i {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 18px;
}

.safety-grid h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.safety-grid p {
    color: var(--muted);
    font-size: 13px;
}


/* =========================================
COMPANY INFORMATION
========================================= */

.company-section {
    padding: 120px 7%;
    background: white;
}

.company-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.company-item {
    padding: 35px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.company-item span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.company-item strong {
    font-size: 15px;
    font-weight: 600;
}

.company-note {
    max-width: 850px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}


/* =========================================
CTA
========================================= */

.about-cta {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background:
        url("https://images.unsplash.com/photo-1549366021-9f761d450615?auto=format&fit=crop&w=2200&q=90")
        center/cover;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,22,17,.65);
}

.about-cta-content {
    position: relative;
    padding: 50px 25px;
}

.about-cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    margin: 20px 0;
    font-weight: 500;
}

.about-cta-content p {
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin: auto;
}

.about-cta-content a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    padding: 15px 28px;
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: .3s ease;
}

.about-cta-content a:hover {
    background: white;
}


/* =========================================
FOOTER
========================================= */

.about-footer {
    background: var(--dark);
    color: white;
    padding: 65px 7% 25px;
}

.footer-main {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-main h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
}

.footer-main p {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: rgba(255,255,255,.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1300px;
    margin: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


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

@media (max-width: 1000px) {

    .about-links {
        display: none;
    }

    .about-menu {
        display: block;
    }

    .about-nav-btn {
        margin-left: auto;
    }

    .about-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section,
    .why-section,
    .safety-section {
        grid-template-columns: 1fr;
    }

    .story-image img,
    .why-image img {
        height: 500px;
        min-height: 0;
    }

    .safety-section {
        gap: 40px;
    }

}


@media (max-width: 650px) {

    .about-nav {
        padding: 20px 6%;
    }

    .about-nav-btn {
        display: none;
    }

    .about-hero-content {
        padding: 120px 7% 70px;
    }

    .about-hero-content h1 {
        font-size: 48px;
    }

    .about-intro,
    .about-services,
    .company-section,
    .safety-section {
        padding: 90px 6%;
    }

    .story-content,
    .why-content {
        padding: 80px 7%;
    }

    .about-service-grid,
    .safety-grid,
    .company-grid {
        grid-template-columns: 1fr;
    }

    .responsible-content {
        margin-left: 7%;
        padding-right: 7%;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
    }

}