/* ===============================
   Global Styles
   =============================== */

/* Prevent image dragging and right-click saving */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
    width: 100%;
    height: auto;
    display: block;
}

* {
    box-sizing: border-box;
}

/* Page layout and typography */
html,
body {
    font-family: 'Roboto', sans-serif;
    background-color: #171616;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

    /* Disable text selection */
    user-select: none;
    -webkit-user-select: none;
    /* Safari, Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
}

/* Main container */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    flex: 1;
}

/* ===============================
   Typography
   =============================== */

h1 {
    text-align: center;
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 40px;
}

h2 {
    color: #ffcc00;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Highlight text style */
.highlight {
    color: #ffcc00;
    font-weight: bold;
}

/* ===============================
   Images & Media
   =============================== */

.section-image {
    width: 100%;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

/* ===============================
   Team Section
   =============================== */

.team-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.team-member {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s ease;
    border: 4px solid #ffcc00;
}

.team-member h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.team-member p {
    font-size: 14px;
    color: #ffcc00;
}

/* ===============================
   Responsive Styles
   =============================== */

/* Tablet */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.1rem;
    }

    main {
        padding: 40px 15px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .team-section {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
}

/* Mobile Portrait */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    main {
        padding: 30px 10px;
    }
}