*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#050505;
    color:#f2f2f2;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

/* ===== NAVBAR ===== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,0.82);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.navbar{
    width:100%;
}

.nav-inner{
    width:92%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
    gap:20px;
}

.brand{
    font-size:1.15rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    white-space:nowrap;
}

.brand span{
    color:#ff8800;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:22px;
    list-style:none;
    flex-wrap:wrap;
    justify-content:center;
}

.nav-links a{
    color:#f5f5f5;
    text-decoration:none;
    font-size:0.95rem;
    transition:0.3s ease;
    opacity:0.9;
}

.nav-links a:hover{
    color:#ff8800;
    opacity:1;
}

/* ===== HERO ===== */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.76), rgba(0,0,0,0.9)),
    url('images/csu-hero-background.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:190px 20px 100px;
}

.hero-content{
    max-width:900px;
    width:100%;
}

.hero h1{
    font-size:4.2rem;
    line-height:1.15;
    margin-bottom:28px;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
}

.hero p{
    font-size:1.12rem;
    color:#d3d3d3;
    margin:0 auto 40px;
    max-width:760px;
    line-height:1.9;
}

.hero-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.hero-tags span{
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.05);
    padding:10px 18px;
    border-radius:50px;
    font-size:0.9rem;
    backdrop-filter:blur(4px);
}

/* ===== BUTTONS ===== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 34px;
    background:#ff8800;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    font-size:0.98rem;
    transition:0.3s ease;
    border:none;
    box-shadow:
    0 0 0 rgba(255,136,0,0),
    0 8px 25px rgba(255,136,0,0.18);
}

.btn:hover{
    transform:translateY(-3px);
    background:#ffaa33;
    box-shadow:
    0 10px 30px rgba(255,136,0,0.25);
}

/* ===== GENERAL SECTIONS ===== */

.section{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.4rem;
    margin-bottom:15px;
}

.section-title p{
    color:#c0c0c0;
    max-width:700px;
    margin:auto;
}

/* ===== ABOUT ===== */

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:50px;
    align-items:center;
}

.about-text h3{
    font-size:1.7rem;
    margin-bottom:20px;
}

.about-text p{
    margin-bottom:20px;
    color:#d0d0d0;
}

.about-image img{
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
}

/* ===== ARCHIVES ===== */

.archive-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.archive-card{
    background:#101010;
    border:1px solid rgba(255,255,255,0.08);
    padding:35px 28px;
    border-radius:20px;
    transition:0.3s;
}

.archive-card:hover{
    transform:translateY(-5px);
    border-color:#ff8800;
}

.archive-card i{
    font-size:2rem;
    color:#ff8800;
    margin-bottom:20px;
}

.archive-card h3{
    margin-bottom:15px;
}

.archive-card p{
    color:#c5c5c5;
}

/* ===== QUOTE SECTION ===== */

.quote-section{
    background:#0b0b0b;
    text-align:center;
    padding:120px 20px;
}

.quote-section h2{
    font-size:2rem;
    max-width:900px;
    margin:auto;
    line-height:1.8;
    font-weight:normal;
}

.quote-section span{
    color:#ff8800;
}

/* ===== CTA ===== */

.cta{
    text-align:center;
}

.cta p{
    max-width:700px;
    margin:0 auto 30px;
    color:#d0d0d0;
}

/* ===== SOCIALS ===== */

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.social-links a{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#121212;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.2rem;
    text-decoration:none;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.08);
}

.social-links a:hover{
    background:#ff8800;
    transform:translateY(-3px);
}

/* ===== FOOTER ===== */

footer{
    background:#000;
    padding:60px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

footer p{
    margin-bottom:15px;
    color:#c5c5c5;
}

.footer-title{
    font-size:1.2rem;
    font-weight:bold;
    margin-bottom:20px;
}

.footer-title span{
    color:#ff8800;
}

.footer-structure{
    margin-top:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.division-separator{
    font-size:1.5rem;
    color:#ff8800;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

header{
    background:rgba(0,0,0,0.92);
}

.nav-inner{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:16px 0;
    gap:18px;
}

.brand{
    font-size:1.45rem;
}

.nav-links{
    width:100%;
    justify-content:center;
    gap:18px;
}

.nav-links a{
    font-size:1rem;
}

.hero{
    padding:240px 24px 100px;
}

.hero h1{
    font-size:2.9rem;
    line-height:1.2;
    letter-spacing:1px;
    margin-bottom:24px;
}

.hero p{
    font-size:1.05rem;
    line-height:1.85;
}

.hero-tags{
    gap:14px;
    margin-bottom:45px;
}

.hero-tags span{
    padding:12px 20px;
    font-size:0.92rem;
}

.btn{
    width:100%;
    max-width:340px;
    padding:18px 30px;
    font-size:1.05rem;
}

.section{
    padding:85px 0;
}

.section-title h2{
    font-size:2rem;
}

.section-title p{
    font-size:1rem;
    line-height:1.9;
}

.quote-section{
    padding:100px 24px;
}

.quote-section h2{
    font-size:1.45rem;
    line-height:1.8;
}

.about-grid{
    gap:35px;
}

.archive-grid{
    gap:20px;
}

.archive-card{
    padding:30px 24px;
}

.social-links{
    gap:16px;
}

.social-links a{
    width:52px;
    height:52px;
}

footer{
    padding:55px 24px;
}

.footer-structure{
    flex-direction:column;
    gap:18px;
}

}