@font-face {
    font-family: 'Minecraft';
    src: url('../Home/Fonts/Minecraft.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* ===== BODY ===== */
body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background-image:url("../Imagies/download (3).jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    background-repeat:no-repeat;
    color:white;
    font-family: 'Minecraft', monospace;
}

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:-1;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
}

/*nevigation bar */
.navbar {
    position: relative;
    left: 50%;
    top: 0;
    width: 97%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    transform: translateX(-50%);
    background-color: #c6c6c6;
    border: 3px solid #000000;
    box-shadow: 
        inset 3px 3px 0px #ffffff, 
        inset -3px -3px 0px #5b5b5b,
        0 10px 30px rgba(0,0,0,0.8);
    padding: 2px 8px 8px 8px;
    display: flex;
    z-index: 999; 
    -webkit-font-smoothing: none;
}

.logo img {
    height: 60px;
    margin-left: -20px;
    z-index: 10;
}

.nav-desktop {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.nav-desktop li a {
    text-decoration: none;
    color: #000000; 
    font-family: 'Minecraft', monospace;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    background-color: #a0a0a0; 
    padding: 8px 20px; 
    border: 2px solid #000000; 
    box-shadow: 
        inset 3px 3px 0px #ffffff,   
        inset -3px -3px 0px #555555; 
    cursor: pointer;
    transition: background-color 0s; 
}

.nav-desktop li a:hover {
    background-color: #3ca340; 
    color: #ffffff; 
    box-shadow: 
        inset 3px 3px 0px #5cbf60,   
        inset -3px -3px 0px #276b29; 
    text-shadow: 2px 2px 0px #000000; 
}

*, *::before, *::after {
    box-sizing: border-box; 
}

/* ========================================= */
/* RESPONSIVE HERO SECTION                   */
/* ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 5vw, 60px); 
    padding: 120px 5% 60px 5%; 
    flex-wrap: wrap;
    width: 100%;
}

.glass-card {
    width: 100%; 
    max-width: 350px; 
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #7CFC00;
    box-shadow: 0 0 30px rgba(0,0,0,.6);
}

.glass-card img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    padding: clamp(20px, 5vw, 40px); 
    background-color: rgba(139, 139, 139, 0.4); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border: 3px solid #1a1a1a; 
    box-shadow: 
        inset 4px 4px 0px rgba(255, 255, 255, 0.6), 
        inset -4px -4px 0px rgba(55, 55, 55, 0.8),
        0 10px 30px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: clamp(28px, 6vw, 55px); 
    color: #7CFC00;
    margin-top: 0;
    margin-bottom: 15px;
    word-wrap: break-word; 
    text-shadow: 2px 2px 0px #000;
}

.hero-content p {
    line-height: 1.6;
    font-size: clamp(14px, 3vw, 16px); 
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px #000;
}

/* ========================================= */
/* FLASHBACK SECTION (2x2 Video Grid)        */
/* ========================================= */

.flashback {
    text-align: center;
    margin-top: -90px;
    margin-bottom: 90px;
    padding: 20px 8%; 
}

.flashback h2 {
    font-size: 36px;
    color: #7CFC00; 
    margin-bottom: 10px;
}

.flashback p {
    font-size: 18px;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto; 
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #7CFC00;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .video-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
}

/* ========================================= */
/* FOOTER SETTINGS                           */
/* ========================================= */
.prerna-footer {
    background-color: #000000;
    padding: 60px 20px 0 20px;
    color: #ffffff;
    border-top: 4px solid #333333;
    font-family: 'Minecraft', monospace;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-contact, .footer-recognized {
    flex: 1;
}

.footer-recognized {
    border-left: 1px solid #444444; 
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-heading {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #333;
}

.contact-block { margin-bottom: 20px; }
.contact-label { font-weight: bold; font-size: 14px; color: #cccccc; display: block; margin-bottom: 5px; }
.contact-block p { margin: 0; font-size: 15px; line-height: 1.6; color: #dddddd; }

.action-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.action-link:hover {
    color: #ffff55; 
    border-bottom: 1px solid #ffff55;
    text-shadow: 0px 0px 8px rgba(255, 255, 85, 0.4);
}

.recognized-img { max-width: 100%; height: auto; object-fit: contain; margin-top: 10px; }

.social-links { display: flex; gap: 15px; margin-top: 25px; }
.mc-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    box-shadow: inset 2px 2px 0px #555, inset -2px -2px 0px #111;
    transition: all 0.1s ease;
}

.mc-social i { font-size: 18px; }
.mc-social:hover {
    background-color: #3c3c3c;
    transform: translateY(2px);
    box-shadow: inset 2px 2px 0px #111, inset -2px -2px 0px #555;
    color: #ffd700;
}

.footer-bottom-bar { text-align: center; border-top: 1px solid #333333; padding: 20px 0; }
.footer-bottom-bar p { margin: 0; font-size: 14px; color: #888888; letter-spacing: 2px; }

@media (max-width: 900px) {
    .footer-split { flex-direction: column; gap: 40px; }
    .footer-recognized { border-left: none; border-top: 1px solid #444444; padding-left: 0; padding-top: 30px; align-items: center; text-align: center; }
    .contact-block, .footer-heading { text-align: center; }
    .social-links { justify-content: center; }
}