/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    color:white;
}

/* VIDEO */
.video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

/* OVERLAY */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:-1;
}

/* NAVBAR */
.navbar{
    position:absolute;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:25px 60px;
    z-index:10;
}

.logo img{
    height:70px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.nav-links a:hover{
    opacity:0.7;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

/* MENU ICON */
.menu{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.hamburger{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.hamburger div{
    width:20px;
    height:2px;
    background:white;
}

/* CONTENIDO HERO */
.campus-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 80px;
}

.campus-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 4rem; 
    line-height: 1;
}

.campus-desc{
    max-width:500px;
    color:#ddd;
    margin-bottom:10px;
}

/* FOOTER */
.footer{
    background:#1e3a5f;
    color:white;
    padding:60px 10% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-links{
    display:flex;
    justify-content:space-between;
}

.footer-links a{
    display:block;
    margin-bottom:8px;
    color:white;
    text-decoration:none;
    font-size:14px;
    opacity:0.8;
}

.footer-links a:hover{
    opacity:1;
}

.footer-social p{
    margin-bottom:8px;
    opacity:0.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
    text-align:center;
    font-size:13px;
    opacity:0.7;
}

/* MENU FULL */
.menu-full{
    position:fixed;
    inset:0;
    background:#9c7758;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
}

.menu-full.active{
    opacity:1;
    visibility:visible;
}

/* HEADER */
.menu-header{
    display:flex;
    justify-content:space-between;
    padding:30px 60px;
}

.menu-logo img{
    height:60px;
}

.close-btn{
    font-size:28px;
    color:white;
    cursor:pointer;
}

/* CONTENIDO */
.menu-content{
    display:flex;
    height:calc(100% - 100px);
    padding:60px;
}

/* IZQUIERDA */
.menu-left{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:20px;
}

.menu-left h2{
    font-size:32px;
    font-weight:300;
    color:#e8dccc;
    cursor:pointer;
}

.menu-left .active{
    color:white;
}

/* DERECHA */
.menu-right{
    flex:2;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* CARD CAMPUS */
.campus-card{
    width:380px;
    text-decoration:none;
    color:white;
    transition:0.4s;
}

.img-container{
    overflow:hidden;
}

.img-container img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.6s;
}

.campus-card:hover img{
    transform:scale(1.1);
}

.campus-card:hover{
    transform:translateY(-5px);
}

/* ===== INTRO CAMPUS ===== */
.intro-campus{
    padding:100px 10%;
    background:#f5f5f5;
}

.intro-container{
    display:grid;
    grid-template-columns: 200px 1fr;
    gap:40px;
    align-items:start;
}

/* LABEL IZQUIERDA */
.intro-label{
    font-size:12px;
    letter-spacing:3px;
    color:#888;
    margin-top:15px;
}

/* CONTENIDO */
.intro-content h2{
    font-family:'Playfair Display', serif;
    font-size:55px;
    font-weight:300;
    margin-bottom:25px;
    color:#1a1a1a;
}

.intro-content p{
    max-width:650px;
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

/* FEATURES */
.intro-features{
    display:flex;
    gap:20px;
    margin:30px 0;
    flex-wrap:wrap;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:10px;
    background:#eaeaea;
    padding:15px 20px;
    border-radius:8px;
}

.feature-box .dot{
    width:8px;
    height:8px;
    background:#1e3a5f;
    border-radius:50%;
}

/* BOTONES */
.intro-buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.btn-dark{
    background:#1e3a5f;
    color:white;
    padding:12px 20px;
    text-decoration:none;
    font-size:14px;
}

.btn-light{
    background:#ddd;
    color:#333;
    padding:12px 20px;
    text-decoration:none;
    font-size:14px;
}

