/* =========================================================
   SMART CLUB - ENSEM
   ABOUT PAGE
========================================================= */


/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --smart-red: #b00045;
    --smart-red-dark: #7d0031;
    --smart-red-light: #d10a59;

    --smart-black: #202126;
    --smart-dark: #11141a;

    --smart-gray: #62646a;

    --white: #ffffff;
    --light-bg: #f5f5f6;
    --border: #e2e2e2;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--smart-black);

    background: #f8f8f9;

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    display: block;
}


section {
    scroll-margin-top: 85px;
}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: 100%;
    height: 85px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #e7e7e7;

    transition: 0.3s;
}


.navbar.scrolled {
    height: 72px;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.06);
}



/* ================= NAVBAR LOGO ================= */

.logo {
    display: flex;
    align-items: center;

    gap: 12px;
}


.logo img {
    width: 55px;
    height: 55px;

    object-fit: contain;
}


.logo-text {
    display: flex;
    flex-direction: column;
}


.logo-text span {
    font-size: 16px;
    font-weight: 800;

    letter-spacing: 2px;
}


.logo-text small {
    margin-top: 3px;

    color: var(--smart-red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}



/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;

    gap: 35px;

    list-style: none;
}


.nav-links a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}


.nav-links a::after {
    content: "";

    width: 0;
    height: 2px;

    position: absolute;

    left: 0;
    bottom: -8px;

    background: var(--smart-red);

    transition: 0.3s;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--smart-red);
}


.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}



/* ================= JOIN BUTTON ================= */

.join-btn {
    padding: 13px 24px;

    color: white;

    background: var(--smart-red);

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}


.join-btn:hover {
    background: var(--smart-red-dark);

    transform: translateY(-2px);
}



/* ================= MOBILE MENU ================= */

.menu-btn {
    display: none;

    padding: 5px;

    color: var(--smart-black);

    background: none;

    border: none;

    font-size: 27px;

    cursor: pointer;
}


.mobile-menu {
    display: none;
}

/* ==========================================================
   LANGUAGE SWITCH
========================================================== */

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.language-switch span {
    color: rgba(255,255,255,.4);
}

.language-switch button {
    background: transparent;
    border: none;
    color: #2b2b2b;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    transition: .3s;
}

.language-switch button:hover {
    color: #d1005d;
}

.language-switch button.active {
    color: #d1005d;
}

/* =========================================================
   HERO
========================================================= */

.about-hero {
    min-height: 90vh;

    padding: 150px 8% 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(176, 0, 69, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f2f2f3
        );
}


.about-hero::before {
    content: "";

    width: 420px;
    height: 420px;

    position: absolute;

    right: -180px;
    top: 130px;

    border: 1px solid rgba(176, 0, 69, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.about-hero::after {
    content: "";

    width: 220px;
    height: 220px;

    position: absolute;

    right: 40px;
    bottom: -100px;

    border: 1px solid rgba(176, 0, 69, 0.12);

    border-radius: 50%;

    pointer-events: none;
}



/* ================= HERO CONTENT ================= */

.hero-content {
    width: 60%;

    position: relative;

    z-index: 2;
}


.small-title {
    margin-bottom: 22px;

    color: var(--smart-red);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
}


.about-hero h1 {
    margin-bottom: 30px;

    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.95;

    letter-spacing: -5px;
}


.about-hero h1 span {
    color: var(--smart-red);
}


.hero-description {
    max-width: 600px;

    margin-bottom: 35px;

    color: var(--smart-gray);

    font-size: 18px;

    line-height: 1.8;
}


.hero-button {
    padding: 15px 25px;

    display: inline-block;

    color: white;

    background: var(--smart-red);

    border-radius: 4px;

    font-weight: 700;

    transition: 0.3s;
}


.hero-button:hover {
    background: var(--smart-red-dark);

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(176, 0, 69, 0.20);
}



/* =========================================================
   HERO LOGO
========================================================= */

.hero-logo {
    width: 35%;

    display: flex;
    justify-content: center;

    position: relative;

    z-index: 2;
}


.logo-circle {
    width: 350px;
    height: 350px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    position: relative;

    background: white;

    border: 1px solid rgba(176, 0, 69, 0.22);

    border-radius: 50%;

    box-shadow:
        0 30px 80px
        rgba(176, 0, 69, 0.15);

    animation:
        floatingLogo
        5s ease-in-out
        infinite;
}


.logo-circle::before {
    content: "";

    width: calc(100% + 30px);
    height: calc(100% + 30px);

    position: absolute;

    border: 1px dashed rgba(176, 0, 69, 0.18);

    border-radius: 50%;

    animation:
        rotateCircle
        20s linear
        infinite;
}


.logo-circle img {
    width: 185px;

    margin-bottom: 15px;
}


.logo-circle h3 {
    font-size: 24px;
    font-weight: 900;

    letter-spacing: 4px;
}


.logo-circle p {
    margin-top: 8px;

    color: var(--smart-red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 6px;
}


@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes rotateCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 120px 8%;

    background: white;
}


.section-label {
    margin-bottom: 40px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--smart-red);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.section-label span {
    width: 35px;
    height: 2px;

    background: var(--smart-red);
}


.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.intro-grid h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.intro-grid h2 span {
    color: var(--smart-red);
}


.intro-text p {
    margin-bottom: 20px;

    color: var(--smart-gray);

    font-size: 17px;

    line-height: 1.9;
}



/* =========================================================
   CLUB RESPONSABLE
========================================================= */

.founder-section {
    padding: 120px 8%;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #11141a 0%,
            #191c23 55%,
            #23000e 100%
        );
}


.founder-section::before {
    content: "SMART";

    position: absolute;

    right: -40px;
    top: 60px;

    color: rgba(255, 255, 255, 0.018);

    font-size: 220px;
    font-weight: 900;

    letter-spacing: -15px;

    pointer-events: none;
}


.founder-section::after {
    content: "";

    width: 500px;
    height: 500px;

    position: absolute;

    right: -200px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(176, 0, 69, 0.25),
            transparent 65%
        );

    pointer-events: none;
}



/* ================= RESPONSABLE HEADING ================= */

.founder-heading {
    margin-bottom: 70px;

    position: relative;

    z-index: 2;
}


.founder-heading .section-label {
    color: var(--smart-red-light);
}


.founder-heading .section-label span {
    background: var(--smart-red-light);
}


.founder-heading h2 {
    max-width: 900px;

    color: white;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -3px;
}


.founder-heading h2 span {
    color: var(--smart-red-light);
}



/* ================= RESPONSABLE CARD ================= */

.founder-card {
    max-width: 1200px;

    min-height: 600px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(350px, 0.9fr)
        minmax(450px, 1.1fr);

    position: relative;

    z-index: 2;

    overflow: hidden;

    background: white;

    border:
        1px solid
        rgba(209, 10, 89, 0.35);

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.35);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.founder-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 50px 120px
        rgba(0, 0, 0, 0.45);
}



/* ================= RESPONSABLE IMAGE ================= */

.founder-image {
    min-height: 600px;

    position: relative;

    overflow: hidden;
}


.founder-image img {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    object-fit: cover;

    object-position: center;

    transition: transform 0.7s ease;
}


.founder-card:hover
.founder-image img {
    transform: scale(1.03);
}


.founder-badge {
    padding: 13px 18px;

    position: absolute;

    left: 30px;
    bottom: 30px;

    z-index: 3;

    color: white;

    background: var(--smart-red);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;

    box-shadow:
        0 10px 30px
        rgba(176, 0, 69, 0.30);
}



/* ================= RESPONSABLE INFO ================= */

.founder-info {
    padding: 70px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    position: relative;
}


.founder-info::before {
    content: "R";

    position: absolute;

    right: 20px;
    top: -40px;

    color: rgba(176, 0, 69, 0.035);

    font-size: 230px;
    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}


.founder-small {
    margin-bottom: 25px;

    position: relative;

    z-index: 2;

    color: var(--smart-red);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 4px;
}


.founder-info h3 {
    margin-bottom: 12px;

    position: relative;

    z-index: 2;

    color: var(--smart-black);

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -2px;
}


.founder-role {
    margin-bottom: 30px;

    position: relative;

    z-index: 2;

    color: var(--smart-red);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.founder-description {
    max-width: 560px;

    margin-bottom: 35px;

    position: relative;

    z-index: 2;

    color: var(--smart-gray);

    font-size: 16px;

    line-height: 1.85;
}


.founder-quote {
    max-width: 550px;

    margin-bottom: 35px;

    padding: 25px 28px;

    position: relative;

    z-index: 2;

    background: #f7f7f8;

    border-left: 4px solid var(--smart-red);
}


.founder-quote span {
    display: block;

    margin-bottom: 10px;

    color: var(--smart-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
}


.founder-quote p {
    color: #55575d;

    font-size: 14px;

    line-height: 1.7;
}


.founder-linkedin {
    position: relative;
    

    z-index: 2;

    color: var(--smart-black);

    border-bottom-color: var(--smart-red);
}


.member-link:hover {
    .member-link:hover{
    color:#b00045 !important;
}

.founder-linkedin{
    color:#2b2b2b !important;
}

.founder-linkedin:hover{
    color:var(--smart-red-light) !important;
}
}



/* =========================================================
   EXECUTIVE BUREAU
========================================================= */

.bureau-section {
    padding: 120px 8%;

    background: #f5f5f6;
}


.bureau-heading {
    margin-bottom: 70px;
}


.bureau-heading h2 {
    font-size: clamp(40px, 5vw, 65px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.bureau-heading h2 span {
    color: var(--smart-red);
}



/* =========================================================
   PRESIDENT
========================================================= */

.president-container {
    margin-bottom: 60px;
}


.president-card {
    min-height: 500px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    background: var(--smart-dark);

    border-radius: 10px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.13);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.president-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, 0.18);
}



/* ================= PRESIDENT IMAGE ================= */

.president-image {
    min-height: 500px;

    position: relative;

    overflow: hidden;
}


.president-image img {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    object-fit: cover;

    object-position: center;

    transition: transform 0.6s ease;
}


.president-card:hover
.president-image img {
    transform: scale(1.03);
}


.role-badge {
    padding: 10px 15px;

    position: absolute;

    left: 30px;
    bottom: 30px;

    z-index: 3;

    color: white;

    background: var(--smart-red);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}



/* ================= PRESIDENT INFO ================= */

.president-info {
    padding: 70px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    color: white;

    position: relative;

    overflow: hidden;
}


.president-info::after {
    content: "01";

    position: absolute;

    right: -15px;
    bottom: -55px;

    color: rgba(255, 255, 255, 0.025);

    font-size: 220px;
    font-weight: 900;

    pointer-events: none;
}


.member-number {
    margin-bottom: 50px;

    position: relative;

    z-index: 2;

    color: var(--smart-red-light);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;
}


.president-info h3 {
    margin-bottom: 12px;

    position: relative;

    z-index: 2;

    font-size: clamp(35px, 4vw, 55px);
}


.member-role {
    margin-bottom: 30px;

    position: relative;

    z-index: 2;

    color: var(--smart-red-light);

    font-weight: 700;

    letter-spacing: 2px;
}


.member-description {
    max-width: 500px;

    margin-bottom: 30px;

    position: relative;

    z-index: 2;

    color: #b7b8bc;

    line-height: 1.8;
}


.linkedin-btn {
    width: fit-content;

    padding-bottom: 5px;

    position: relative;

    z-index: 2;

    color: white;

    border-bottom:
        1px solid
        var(--smart-red-light);

    font-weight: 700;

    transition: 0.3s;
}


.linkedin-btn:hover {
    color: var(--smart-red-light);

    transform: translateX(4px);
}



/* =========================================================
   BUREAU MEMBERS GRID
========================================================= */

.members-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: stretch;
}



/* ================= MEMBER CARD ================= */

.member-card {
    min-width: 0;

    overflow: hidden;

    position: relative;

    background: white;

    border: 1px solid #e2e2e2;

    border-radius: 10px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.025);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.member-card:hover {
    transform: translateY(-10px);

    border-color: var(--smart-red);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.10);
}



/* =========================================================
   MEMBER PHOTOS
   PHOTO FILLS THE ENTIRE IMAGE AREA
========================================================= */

.member-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    position: relative;

    overflow: hidden;

    /* NO ARTIFICIAL BACKGROUND */
    background: transparent;
}


.member-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 0.5s ease;
}


.member-card:hover
.member-image img {
    transform: scale(1.035);
}



/* ================= MEMBER NUMBER ================= */

.member-image > span {
    width: 52px;
    height: 52px;

    position: absolute;

    top: 25px;
    right: 25px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--smart-red);

    border-radius: 50%;

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.15);
}



/* ================= MEMBER INFORMATION ================= */

.member-info {
    min-height: 250px;

    padding: 30px;

    display: flex;
    flex-direction: column;
}


.member-info .role {
    margin-bottom: 10px;

    color: var(--smart-red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.member-info h3 {
    margin-bottom: 15px;

    font-size: 25px;

    line-height: 1.15;
}


.member-info .description {
    margin-bottom: 22px;

    color: var(--smart-gray);

    font-size: 14px;

    line-height: 1.7;
}


.member-info a {
    width: fit-content;

    margin-top: auto;

    padding-bottom: 4px;

    font-weight: 700;

    border-bottom:
        1px solid
        rgba(176, 0, 69, 0.35);

    transition: 0.3s;
}


.member-info a:hover {
    color: var(--smart-red);

    border-bottom-color: var(--smart-red);

    transform: translateX(4px);
}



/* =========================================================
   DESIGNER CARD
========================================================= */

.designer-card {
    border:
        1px solid
        rgba(176, 0, 69, 0.35);

    background: white;
}


.designer-card::before {
    content: "";

    width: 100%;
    height: 4px;

    position: absolute;

    top: 0;
    left: 0;

    z-index: 6;

    background:
        linear-gradient(
            90deg,
            var(--smart-red-dark),
            var(--smart-red),
            var(--smart-red-light)
        );
}


.designer-card:hover {
    border-color: var(--smart-red);

    box-shadow:
        0 25px 60px
        rgba(176, 0, 69, 0.14);
}


.designer-badge {
    padding: 8px 12px;

    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 5;

    color: white;

    background:
        rgba(17, 20, 26, 0.88);

    border-left:
        3px solid
        var(--smart-red-light);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}



/* =========================================================
   TEAM MESSAGE
========================================================= */

.team-message {
    padding: 130px 8%;

    position: relative;

    overflow: hidden;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #70002b,
            #ae0044,
            #d10a59
        );
}


.team-message::before {
    content: "SMART CLUB";

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    color:
        rgba(255, 255, 255, 0.035);

    font-size:
        clamp(100px, 15vw, 240px);

    font-weight: 900;

    white-space: nowrap;

    pointer-events: none;
}


.message-content {
    position: relative;

    z-index: 2;
}


.message-content > p:first-child {
    margin-bottom: 25px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;
}


.message-content h2 {
    margin-bottom: 30px;

    font-size:
        clamp(55px, 7vw, 95px);

    line-height: 0.95;

    letter-spacing: -4px;
}


.message-content h2 span {
    color: var(--smart-black);
}


.message-description {
    max-width: 600px;

    margin: 0 auto 35px;

    color:
        rgba(255, 255, 255, 0.88);

    line-height: 1.8;
}


.message-content a {
    padding: 15px 25px;

    display: inline-block;

    color: var(--smart-red);

    background: white;

    border-radius: 4px;

    font-weight: 700;

    transition: 0.3s;
}


.message-content a:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.18);
}



/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 70px 8% 30px;

    color: #aaa;

    background: #17191e;
}


.footer-main {
    padding-bottom: 50px;

    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    gap: 70px;
}


.footer-brand {
    display: flex;
    align-items: center;

    gap: 18px;
}


.footer-brand img {
    width: 70px;
}


.footer-brand h3 {
    margin-bottom: 6px;

    color: white;

    letter-spacing: 3px;
}


.footer-brand p {
    color: var(--smart-red-light);
}


.footer-school > p,
.footer-links > p {
    margin-bottom: 12px;

    color: var(--smart-red-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}


.footer-school h3 {
    margin-bottom: 8px;

    color: white;

    font-size: 27px;
}


.footer-school span {
    font-size: 13px;

    line-height: 1.6;
}


.footer-links {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.footer-links a {
    width: fit-content;

    color: white;

    transition: 0.3s;
}


.footer-links a:hover {
    color: var(--smart-red-light);

    transform: translateX(5px);
}


.footer-bottom {
    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    color: #85868b;

    border-top:
        1px solid
        #34363c;

    font-size: 12px;
}


.footer-bottom span {
    color: var(--smart-red-light);
}



/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-links,
    .navbar > .join-btn {
        display: none;
    }


    .menu-btn {
        display: block;
    }


    .mobile-menu {
        width: 100%;

        padding:
            110px 7%
            40px;

        position: fixed;

        top: 0;
        left: 0;

        z-index: 900;

        background: white;

        flex-direction: column;

        gap: 25px;

        box-shadow:
            0 15px 40px
            rgba(0, 0, 0, 0.08);
    }


    .mobile-menu.open {
        display: flex;
    }


    .mobile-menu a {
        font-size: 18px;

        font-weight: 700;
    }


    .mobile-join {
        color: var(--smart-red);
    }



    /* HERO */

    .about-hero {
        padding-top: 140px;

        flex-direction: column;

        text-align: center;

        gap: 70px;
    }


    .hero-content,
    .hero-logo {
        width: 100%;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }



    /* INTRO */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }



    /* RESPONSABLE */

    .founder-card {
        grid-template-columns: 1fr;
    }


    .founder-image {
        min-height: 600px;
    }


    .founder-info {
        padding: 60px;
    }



    /* PRESIDENT */

    .president-card {
        grid-template-columns: 1fr;
    }


    .president-image {
        min-height: 600px;
    }



    /* MEMBERS */

    .members-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }



    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .navbar {
        height: 75px;

        padding: 0 5%;
    }


    .logo img {
        width: 45px;
        height: 45px;
    }


    .logo-text span {
        font-size: 13px;
    }


    .logo-text small {
        font-size: 8px;

        letter-spacing: 2px;
    }



    /* HERO */

    .about-hero {
        min-height: auto;

        padding:
            135px 6%
            80px;
    }


    .about-hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }


    .hero-description {
        font-size: 16px;
    }



    /* HERO LOGO */

    .logo-circle {
        width: 260px;
        height: 260px;
    }


    .logo-circle img {
        width: 130px;
    }


    .logo-circle h3 {
        font-size: 17px;

        letter-spacing: 3px;
    }



    /* INTRO */

    .intro-section {
        padding: 85px 6%;
    }


    .intro-grid h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }



    /* RESPONSABLE */

    .founder-section {
        padding: 85px 6%;
    }


    .founder-heading {
        margin-bottom: 45px;
    }


    .founder-heading h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .founder-card {
        display: block;
    }


    .founder-image {
        min-height: 430px;
    }


    .founder-info {
        padding: 40px 28px;
    }


    .founder-info h3 {
        font-size: 38px;
    }


    .founder-description {
        font-size: 15px;
    }


    .founder-quote {
        padding: 20px;
    }


    .founder-badge {
        left: 20px;
        bottom: 20px;

        padding: 10px 12px;

        font-size: 9px;

        letter-spacing: 2px;
    }



    /* BUREAU */

    .bureau-section {
        padding: 85px 6%;
    }


    .bureau-heading {
        margin-bottom: 45px;
    }


    .bureau-heading h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }



    /* PRESIDENT */

    .president-card {
        display: block;
    }


    .president-image {
        min-height: 430px;
    }


    .president-info {
        padding: 40px 30px;
    }


    .member-number {
        margin-bottom: 30px;
    }


    .president-info h3 {
        font-size: 38px;
    }



    /* MEMBERS */

    .members-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .member-image {
        width: 100%;

        aspect-ratio: 4 / 5;
    }


    .member-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }


    .member-info {
        min-height: auto;

        padding: 27px 25px;
    }


    .member-image > span {
        width: 46px;
        height: 46px;

        top: 20px;
        right: 20px;
    }



    /* TEAM MESSAGE */

    .team-message {
        padding: 100px 6%;
    }


    .message-content h2 {
        font-size: 55px;

        letter-spacing: -3px;
    }



    /* FOOTER */

    footer {
        padding:
            60px 6%
            25px;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-hero h1 {
        font-size: 44px;
    }


    .logo-circle {
        width: 225px;
        height: 225px;
    }


    .logo-circle img {
        width: 110px;
    }


    .founder-image,
    .president-image {
        min-height: 370px;
    }


    .member-image {
        width: 100%;

        aspect-ratio: 4 / 5;
    }


    .member-image img {
        object-fit: cover;

        object-position: center center;
    }


    .founder-info,
    .president-info {
        padding: 35px 22px;
    }


    .message-content h2 {
        font-size: 46px;
    }

}
.member-link{
    color:#2b2b2b;      /* Change this to any color you want */
    text-decoration:none;
    font-weight:600;
    margin-right:18px;
    border-bottom:1px solid #b00045;   /* Underline color */
    transition:.3s;
}

.member-link:hover{
    color:#b00045 !important;
}

.founder-linkedin{

    display:inline-block;

    width:fit-content;

    margin-right:22px;

    padding-bottom:5px;

    color:#2b2b2b;

    text-decoration:none;

    font-weight:700;

    border-bottom:1px solid var(--smart-red-light);

    transition:.3s;

}

.founder-linkedin:hover{

    color:var(--smart-red-light);

    transform:translateX(4px);

}
