/* Import de police premium */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Montserrat", sans-serif;
}

body{
    background:#f4f6fc;
    color:#1c1c1c;
    line-height:1.6;
}

/* HEADER */
header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(10,25,68,0.85);
    backdrop-filter:blur(10px);
}

nav{
    max-width:1400px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav .logo{
    color:white;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    position:relative;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:3px;
    background:#C9A227;
    transition:0.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    height:85vh;
    background:url("assets/header.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    animation:fadeIn 2s ease;
}

.hero-content h1{
    font-size:65px;
    font-weight:700;
}

.hero-content p{
    margin-top:15px;
    font-size:22px;
    text-transform:uppercase;
    letter-spacing:3px;
}

/* SECTIONS */
.section{
    max-width:1300px;
    margin:80px auto;
    padding:40px;
    background:white;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    animation:fadeUp 1s ease;
}

.section h2{
    font-size:35px;
    margin-bottom:20px;
    color:#0A1A44;
    font-weight:700;
}

/* BUTTON */
.btn{
    display:inline-block;
    background:#0A1A44;
    padding:12px 25px;
    color:white;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#C9A227;
    color:#0A1A44;
}

/* FOOTER */
footer{
    margin-top:50px;
    background:#0A1A44;
    color:white;
    text-align:center;
    padding:20px;
}

/* ANIMATIONS */
@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:translateY(0);}
}
