﻿/* New Color Scheme */
:root {
    --primary: #2a9d8f;
    --primary-dark: #264653;
    --secondary: #e9c46a;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #495057;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1587474260584-136574528ed5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--secondary);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image-frame {
    border: 15px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 2rem;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

    .section-title span {
        color: var(--primary);
    }

.about-text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

    .feature-item i {
        color: var(--primary);
        font-size: 1.2rem;
    }

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}
