/* --- About Hero --- */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/about/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 30px; /* Offset for sticky nav */
}

.about-hero-content h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Story Section --- */
.about-story {
    padding: 50px 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.subtitle {
    color: #c29b40;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- Values Section --- */
.about-values {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: #c29b40;
    margin: 15px auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: #c29b40;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* --- Location Section Styles --- */
.about-location {
    padding: 100px 0;
    background-color: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature list inside location */
.location-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.loc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.loc-item i {
    font-size: 1.5rem;
    color: #c29b40; /* Your Brand Gold */
    background: #f9f6ef;
    padding: 15px;
    border-radius: 12px;
}

.loc-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.loc-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Map Container */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid #fff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .loc-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-location {
        padding: 60px 20px;
    }
}

/* --- Enhanced Mobile Responsiveness --- */

/* Tablet & Smaller (768px and below) */
@media (max-width: 768px) {
    /* 1. About Hero Fixes */
    .about-hero {
        height: 50vh; /* Shorter hero so content is visible sooner */
        padding: 20px 20px 10px; /* More top padding to clear the sticky header */
    }

    .about-hero-content h1 { 
        font-size: 2.2rem; /* Scaled down significantly */
        letter-spacing: 1px;
    }

    .about-hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* 2. Story Section Fixes */
    .about-story {
        padding: 30px 20px; /* Reduced vertical padding */
    }

    .story-grid { 
        grid-template-columns: 1fr; /* Stacks image on top of text */
        gap: 40px; 
    }

    .story-text { 
        text-align: center; 
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-image img {
        border-radius: 12px; /* Slightly smaller radius for mobile */
    }

    /* 3. Values Section Fixes */
    .about-values {
        padding: 30px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .value-card {
        padding: 30px 20px; /* Slimmer cards */
    }
}

/* Mobile Phone (480px and below) */
@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem; /* Even smaller for tiny screens */
    }

    .about-hero {
        height: 45vh;
    }

    .story-text h2 {
        font-size: 1.7rem;
    }

    /* Ensure the gold line stays small */
    .gold-line {
        width: 40px;
    }
    
    /* Make value cards take full width but look sleek */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}