﻿/* Genel container */
.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Hero Bölümü */
.about-page .about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Assets/Rumeli/RumeliG/Resimler/iç.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

    .about-page .about-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .about-page .about-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }
.about-page .section-header{
    margin-bottom: 15px;
}
/* Breadcrumb */
.about-page .breadcrumb {
    padding: 15px 0;
    background-color: #f5f5f5;
    font-size: 0.95rem;
}

    .about-page .breadcrumb a {
        color: #c19a6b;
        text-decoration: none;
    }

        .about-page .breadcrumb a:hover {
            color: #a87c52;
        }

    .about-page .breadcrumb span {
        color: #7f8c8d;
    }

/* Tarihçe */
.about-page .history-section {
    padding: 80px 0;
}

.about-page .history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-page .history-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
}

    .about-page .history-text h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: #c19a6b;
    }

.about-page .history-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.about-page .history-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.about-page .history-image:hover img {
    transform: scale(1.05);
}

/* Misyon & Vizyon */
.about-page .mission-vision {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-page .mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-page .mission-item,
.about-page .vision-item {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .about-page .mission-item:hover,
    .about-page .vision-item:hover {
        transform: translateY(-8px);
    }

/* Takım */
.about-page .team-section {
    padding: 80px 0;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-page .team-member {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .about-page .team-member:hover {
        transform: translateY(-8px);
    }

/* Değerler */
.about-page .values-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.about-page .value-item {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .about-page .value-item:hover {
        transform: translateY(-8px);
    }

/* Animasyon */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page .about-hero {
        height: 50vh;
    }

        .about-page .about-hero h1 {
            font-size: 2.2rem;
        }

    .about-page .history-content {
        grid-template-columns: 1fr;
    }
}
