/* ---------- Home Page Styles ---------- */

.home-container {
    padding: 30px 5%;
    text-align: center;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.home-logo {
    width: 355px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    margin: 0 273px ; 
}

.home-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    margin: 10px 0;
    text-shadow: 2px 2px 2px black;
    padding-bottom: 20px;
    border-bottom: 2px solid white;
}

/*
.title-divider {
    width: 200px;
    margin: 15px auto 30px;
    border: none;
    height: 2px;
    background-color: rgba(159, 207, 255, 0.77);
}
    */

.home-description {
    width: 90%;
    margin: 50px auto 60px;
    color: #ffffffcc;
    font-size: 1.5em;
    line-height: 1.7;
    background-color: rgb(0 0 0 / 89%);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #ffffff3a;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Button Cards */
.home-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.home-card {
    flex: 1 1;
    max-width: 600px;
    background-color: rgb(0 0 0 / 89%);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.home-card:hover {
    background-color: rgba(0, 0, 0, 0.507);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(159, 207, 255, 0.4);
}

.home-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    color: rgba(159, 207, 255, 0.9);
    margin-bottom: 10px;
}

.home-card p {
    color: #ffffffd2;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .home-buttons {
        flex-direction: column;
        align-items: center;
    }
    .home-card {
        max-width: 90%;
    }
}

/* ---------- Equipment Page Styles ---------- */

.equipment-container {
    padding: 20px 5% 100px;
    text-align: center;
    color: white;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.equipment-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.equip-card {
    flex: 1 1 350px;
    max-width: 400px;
    background-color: rgb(0 0 0 / 70%);
    border: 2px solid black;
    border-radius: 10px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.equip-card:hover {
    background-color: rgba(14, 18, 22, 0.473);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(159, 207, 255, 0.4);
}

.equip-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3em;
    color: rgba(159, 207, 255, 0.9);
    margin-bottom: 10px;
}

.equip-card p {
    color: #ffffffd2;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .equipment-grid {
        flex-direction: column;
        align-items: center;
    }

    .equip-card {
        max-width: 90%;
    }
}
