.hero{ height:100vh; background:url("../images/hero.jpg") center center/cover; display:flex; justify-content:center; align-items:center; text-align:center; position:relative; }
.hero h1{ font-family:"Bebas Neue"; font-size:95px; letter-spacing:4px; }
.hero h2{ font-size:38px; color:#d81f26; margin:15px 0; }
.hero p{ font-size:20px; line-height:1.8; margin-bottom:40px; }

/* =========================================
   OUR MISSION UPGRADE
   ========================================= */
.mission{ text-align:center; }
.mission h2 { 
    font-size: 45px; 
    margin-bottom: 30px; 
    font-family: "Bebas Neue"; 
    display: inline-block; 
    border-bottom: 3px solid #d81f26; 
    padding-bottom: 10px;
}
.mission p { 
    font-size: 20px; 
    max-width: 800px; 
    margin: auto; 
    line-height: 1.8; 
    color: #cccccc; 
    font-weight: 300; 
}

/* =========================================
   FEATURE CARDS UPGRADE
   ========================================= */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.card { 
    background: linear-gradient(145deg, #181818, #0a0a0a); 
    border: 1px solid #222; 
    padding: 40px; 
    border-radius: 15px; 
    transition: all 0.4s ease; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    min-height: 250px; 
    text-decoration: none; 
    color: white; 
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d81f26;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover { 
    transform: translateY(-10px); 
    border-color: #d81f26;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6); 
}

.card:hover::after {
    transform: scaleX(1); 
}

.card h3 { 
    font-size: 34px; 
    margin-bottom: 15px; 
    font-family: "Bebas Neue"; 
    letter-spacing: 2px; 
}
.card p { 
    line-height: 1.6; 
    max-width: 260px; 
    color: #ccc; 
}

.youtube{ text-align:center; }
.future{ text-align:center; }

/* =========================================
   CLOSING QUOTE
   ========================================= */
.closing-quote {
    text-align: center;
    padding: 20px 10%;
}
.closing-quote .quote-text {
    font-size: 20px; 
    line-height: 1.8; 
    max-width: 800px; 
    margin: 0 auto 20px auto;
    color: #cccccc;
    font-weight: 300;
    font-style: normal; 
}
.closing-quote .highlight {
    color: #cccccc; 
    font-weight: 300; 
}

/* =========================================
   COMING SOON GRID UPGRADE
   ========================================= */
.future-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.future-grid div { 
    background: transparent; 
    border: 2px dashed #333; 
    color: #777;
    padding: 35px; 
    border-radius: 10px; 
    transition: 0.3s; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.future-grid div:hover { 
    border-color: #d81f26;
    color: #fff;
    background: rgba(216, 31, 38, 0.05); 
}

/* =========================================
   IPAD / TABLET RESPONSIVENESS (1024px)
   ========================================= */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: 1fr; /* Forces a single column */
        max-width: 600px; /* Keeps the cards from stretching too wide */
        margin: 0 auto; /* Centers the column perfectly */
    }
}

/* =========================================
   HOME PAGE MOBILE RESPONSIVENESS (768px)
   ========================================= */
@media (max-width: 768px) {

    .hero-content {
        margin-top: 140px; 
    }
    .hero h1 {
        font-size: 55px;
    }
    .hero h2 {
        font-size: 26px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .mission h2 {
        font-size: 36px;
    }
    .mission p {
        font-size: 16px; 
        padding: 0 10px; 
    }
    
    .closing-quote .quote-text {
        font-size: 16px; 
        padding: 0 10px;
    }

    /* Keep cards stacked cleanly on mobile with descriptions visible */
    .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%; /* Lets them fill the phone screen nicely */
    }
    .card {
        padding: 30px 20px;
        min-height: auto;
        text-align: center;
    }
    .card h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .card p {
        font-size: 14px;
        max-width: 100%;
        color: #aaa;
    }
    
    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    .btn {
        margin: 0; 
        width: 100%;
    }
}