/* ================= GLOBAL SETUP ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #e4e4e4;
    color: #991A02;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    background-color: #991A02;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    /* Pushes Logo Left, Buttons Right */
    align-items: center;
    padding: 0 2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 80px;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 70px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    margin-left: auto;
    /* Force-pins buttons to the right */
}

.nav-btn {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-btn {
    color: #991A02;
}

/* Hover effect on the default Red Background */
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-btn.active {
    background: white;
    color: #991A02;
}

.navbar.scrolled .nav-btn.active {
    background-color: white;
    color: #991A02;
}


@media (max-width: 992px) {
    .vision-container {
        grid-template-columns: 1fr;
    }
}

/* ================= MOBILE MENU STYLES ================= */
.hamburger {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 3000;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Transitions hamburger to 'X' when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    backdrop-filter: blur(20px);
    width: 80vw;
    max-width: 320px;
    background-color: rgb(48, 47, 47, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-left: 2rem;
    transform: translateX(-100%);
    /* Start hidden off-screen */
    transition: transform 0.5s ease;
    z-index: 2500;
}

.mobile-menu.open {
    transform: translateX(0);
    /* Slide in */
}

.mobile-menu a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
}

/* ================= CONTACT PAGE ================= */
/* ================= CONTACT PAGE ================= */
/* KILL INTERACTION BOXES , CONTACT ICONS ONLY */
.contact-card,
.contact-card:hover,
.contact-card:active,
.contact-card:focus,
.contact-card:focus-visible {
    outline: none;
    box-shadow: none;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

.contact-page {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* CTA */
.contact-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

/* ICON CONTAINER */
.contact-icons {
    display: flex;
    gap: 160px;
    justify-content: center;
    align-items: center;
}

/* LINK , ABSOLUTELY NO VISUAL FOOTPRINT */
.contact-card {
    all: unset;                 
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    color: white;
}

/* ICON */
.contact-card img {
    width: 56px;
    height: 56px;
    display: block;
    pointer-events: none;       /* prevents box hover bleed */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* TEXT (hidden by default on PC) */
.contact-card span {
    color: #991A02;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
    pointer-events: none;
}

/* DESKTOP HOVER */
@media (hover: hover) and (pointer: fine) {
    .contact-card:hover span {
        opacity: 1;
        transform: translateY(6px);
    }

    .contact-card:hover img {
        transform: scale(1.06);
    }
}

/* ICON-ONLY GLOWS , NO RECTANGLES POSSIBLE */
.contact-card.instagram:hover img {
    filter: drop-shadow(0 0 16px rgba(225, 48, 108, 0.8));
}

.contact-card.linkedin:hover img {
    filter: drop-shadow(0 0 16px rgba(10, 102, 194, 0.8));
}

.contact-card.email:hover img {
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.65));
}

/* REMOVE ALL FOCUS / TAP HIGHLIGHTS */
.contact-card:focus,
.contact-card:focus-visible,
.contact-card:active {
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .contact-icons {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .contact-card {
        flex-direction: row;
        gap: 18px;
    }

    .contact-card img {
        width: 38px;
        height: 38px;
    }

    .contact-card span {
        opacity: 1;
        transform: none;
        font-size: 0.95rem;
        text-align: left;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .contact-icons {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start; /* left-aligned */
    }

    .contact-card {
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .contact-card img {
        width: 38px;
        height: 38px;
    }

    .contact-card span {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.95rem;
        text-align: left;
    }
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .contact-icons {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
        /* SHIFT LEFT */
    }

    .contact-card {
        width: auto;
        min-width: 85vw;
        flex-direction: row;
        align-items: center;
        padding: 18px 22px;
        gap: 18px;
    }

    .contact-card img {
        width: 38px;
        height: 38px;
    }

    .contact-card span {
        font-family: 'Roboto';
        font-size: 0.95rem;
        text-align: left;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.1rem;
        margin-bottom: 3rem;
    }

    .contact-icons {
        gap: 35px;
    }

    .contact-icons a {
        width: 90px;
        height: 90px;
    }

    .contact-icons a img {
        width: 38px;
        height: 38px;
    }
}

/* ================= ICON ACCENT GLOWS ================= */




/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .contact-icons {
        gap: 30px;
    }

    .contact-icons a img {
        width: 50px;
        height: 50px;
    }
}


/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
    .nav-buttons {
        display: none;
        /* Hide desktop links */
    }

    .hamburger {
        display: flex;
        /* Show hamburger */
    }

}