/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #1a1a1a;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 { font-size: 20px; }
.logo p  { font-size: 13px; }

/* NAVIGATION */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
}

/* SECTIONS */
.section, .content {
    padding: 40px 20px;
}

/* ABOUT SECTION GRID */
.content-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.responsive-img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
}

/* ATTRIBUTES GRID */
.attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.attribute {
    flex: 1 1 200px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 6px;
}

/* TEAM SECTION */
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 1 1 180px;
}

.team-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
}

/* CONTACT FORM */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea, button {
    padding: 10px;
    font-size: 16px;
}

button {
    background: black;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    color: white;
    margin-top: 40px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablets */
@media (max-width: 900px) {
    .content-grid {
        flex-direction: column;
        text-align: center;
    }
}

/* Phones */
@media (max-width: 700px) {

    nav ul {
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 70px;
        right: 0;
        width: 180px;
        padding: 15px;
        display: none;
    }

    nav.open ul {
        display: block;
    }

    .menu-toggle {
        display: block;
        color: white;
    }
}
