*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#050505;
    color:white;
}
.tagline-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:2px;
}

.tagline-wrapper span{
    width:120px;
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        #d8a34a,
        transparent
    );
}

.hero-tagline{
    font-size:15px;
    font-weight:600;
    color:#f5e4b3;
    text-align: center;

    text-shadow:
        0 0 15px rgba(216,163,74,.25);
}

.hero{
    min-height:100vh;

    background:
    url("images/hero.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.80)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    width:min(1200px,80%);
}

.hero-logo{
    width:min(300px,90vw);
    height:auto;

    filter:
        drop-shadow(0 4px 8px rgba(0,0,0,.8))
        drop-shadow(0 12px 24px rgba(0,0,0,.7))
        drop-shadow(0 24px 60px rgba(0,0,0,.5))
        drop-shadow(0 0 20px rgba(216,163,74,.2));
}
.logo{
    font-size:70px;
    margin-bottom:15px;
}

h1{
    font-size:72px;
    letter-spacing:8px;
    font-weight:700;
}

.subtitle{
    margin-top:15px;
    font-size:20px;
    color:#d8a34a;
}

.stats{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:30px;
    flex-wrap:wrap;
}

.stats div{
    background:rgba(255,255,255,.08);
    padding:12px 18px;
    border-radius:30px;
    backdrop-filter:blur(10px);
}

/* ================= SOCIAL ================= */

.social-grid{
    margin-top:60px;

    display:flex;
    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}

.social-card{
    width:280px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:14px;

    padding:28px;

    text-decoration:none;
    color:white;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s ease;
}

.social-card:hover{
    transform:translateY(-6px);

    border-color:rgba(216,163,74,.5);

    box-shadow:
        0 0 30px rgba(216,163,74,.15);
}

.social-card span{
    font-size:18px;
    font-weight:600;
}

.social-icon{
    width:42px;
    height:42px;

    max-width:42px;
    max-height:42px;

    object-fit:contain;
    flex-shrink:0;
}

@media(max-width:600px){

    .social-icon{
        width:28px;
        height:28px;

        max-width:28px;
        max-height:28px;
    }

}

.social-card:hover .social-icon{
    transform:scale(1.15);
}


.section{
    padding:100px 8%;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    color:#d8a34a;
    font-size:38px;
}

.ants-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.ant-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;

    transition:.3s;
}

.ant-card:hover{
    transform:translateY(-6px);
}

.ant-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.ant-card h3{
    padding:20px 20px 5px;
}

.ant-card p{
    padding:0 20px 20px;
    color:#bcbcbc;
}

.about{
    padding:100px 8%;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about h2{
    color:#d8a34a;
    margin-bottom:20px;
}

.about p{
    line-height:1.8;
    margin-bottom:20px;
}

footer{
    padding:50px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-links{
    margin:20px 0;

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d8a34a;
}

@media(max-width:900px){

    h1{
        font-size:42px;
    }

    .social-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        grid-template-columns:1fr;
    }

    .stats{
        flex-direction:column;
        align-items:center;
    }
}
