/* ===============================
   RESET
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* ===============================
   HEADER
=================================*/
header {
    background: #111;
    color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 22px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
}

nav a:hover {
    color: #f9c74f;
}

/* ===============================
   HERO SECTION
=================================*/
.about-hero {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ),
    url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.about-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* ===============================
   STORY SECTION
=================================*/
.story {
    padding: 80px 60px;
    max-width: 1100px;
    margin: auto;
}

.story h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.story p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* ===============================
   FOUNDERS SECTION
=================================*/
.founders {
    background: white;
    padding: 80px 60px;
    text-align: center;
}

.founders h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.founder-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.founder-card:hover {
    transform: translateY(-5px);
    background: #f9c74f;
}

.founder-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.founder-card h3 {
    margin-bottom: 10px;
}

/* ===============================
   MISSION SECTION
=================================*/
.mission {
    background: #111;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.mission h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mission p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

/* ===============================
   FOOTER
=================================*/
footer {
    background: black;
    color: #aaa;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}
