﻿/* ============================================================
   ABOUT PAGE (about.html) — PAGE-SPECIFIC STYLES
   Global styles are in styles.css
============================================================ */

/* HERO */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../ass/img/about-banner.jpg');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    transition: transform 12s ease;
}

.about-hero:hover .about-hero-bg {
    transform: scale(1.0);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 45, 31, 0.78) 0%,
            rgba(11, 74, 52, 0.55) 60%,
            rgba(6, 45, 31, 0.4) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 60px 60px;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {

    0%,
    100% {
        background-position: 0 0, 0 0, 0 0;
    }

    50% {
        background-position: 40px 40px, -30px 30px, 20px -20px;
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 900px;
}

.about-hero-content .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 20px;
    display: block;
}

.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* STAT STRIP */
.stat-strip {
    background: var(--primary-forest);
    padding: 40px 5%;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

/* ABOUT CONTENT SECTION */
.about-content-section {
    background: #ffffff;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(11, 74, 52, 0.06);
    animation: orbFloat 18s ease-in-out infinite;
}

.about-content-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(11, 74, 52, 0.06);
    animation: orbFloat 24s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.04);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.97);
    }
}

.about-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text-block .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--mist-green);
    margin-bottom: 14px;
    display: block;
}

.about-text-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--primary-forest);
    line-height: 1.25;
    margin-bottom: 30px;
}

.about-text-block p {
    font-size: 1.05rem;
    color: #3d5c4a;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image-block {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(11, 74, 52, 0.15);
    transition: transform 0.6s ease;
}

.about-img-main:hover {
    transform: scale(1.02);
}

.about-img-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--primary-forest);
    color: #fff;
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 15px 40px rgba(6, 45, 31, 0.3);
    animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-img-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-accent);
    line-height: 1;
}

.about-img-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

/* VALLEY PARALLAX */
.valley-parallax {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valley-bg {
    position: absolute;
    inset: 0;
    background-image: url('../ass/img/gallery/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.valley-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(6, 45, 31, 0.5) 0%,
            rgba(11, 74, 52, 0.3) 50%,
            rgba(6, 45, 31, 0.6) 100%);
}

.valley-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 5%;
}

.valley-content .tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.valley-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 20px;
}

.valley-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ECO SECTION */
.eco-section {
    background: #f7fdf9;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.eco-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(11, 74, 52, 0.025) 40px,
            rgba(11, 74, 52, 0.025) 41px);
}

.eco-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eco-image-wrap {
    position: relative;
}

.eco-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(11, 74, 52, 0.12);
}

.eco-img-tag {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: var(--primary-forest);
    font-weight: 600;
    animation: badgePulse 5s ease-in-out infinite;
}

.eco-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--primary-forest);
    margin-bottom: 25px;
}

.eco-text p {
    font-size: 1.05rem;
    color: #3d5c4a;
    line-height: 1.9;
    margin-bottom: 18px;
}

.eco-features {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.eco-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--primary-forest);
    font-weight: 500;
}

.eco-features li::before {
    content: '\2756';
    color: var(--gold-accent);
    font-size: 0.7rem;
}

/* WAVE DIVIDER */
.wave-divider {
    line-height: 0;
}

/* CUSTOM CURSOR */
.about-cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-forest);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
    top: var(--mouse-y);
    left: var(--mouse-x);
    transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
    opacity: 0.6;
}

.about-cursor-ring.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--gold-accent);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .about-content-inner,
    .eco-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-badge {
        bottom: 20px;
        left: 20px;
    }

    .stat-strip {
        gap: 40px;
    }
}

/* iOS Safari: background-attachment:fixed causes blank sections */
@media (max-width: 768px) {
    .valley-bg {
        background-attachment: scroll;
    }

    .about-content-section {
        padding: 70px 5%;
    }

    .eco-section {
        padding: 70px 5%;
    }
}