:root {

    --primary-color: #1D3557;
    --secondary-color: #F7E887;
    --accent-color: #6BAF92;

    --white-color: #ffffff;
    --light-color: #F8F9FA;
    --gray-color: #E9ECEF;

    --dark-color: #212529;

    --transition: all 0.36s cubic-bezier(.2,.9,.2,1);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);

    /* Typography */
    --base-font-size: 16px;
    --heading-font-family: 'Manrope', sans-serif;
    --body-font-family: 'Inter', sans-serif;
    --heading-weight: 800;
    --lead-color: #6c757d;
    --body-line-height: 1.75;
    --heading-line-height: 1.14;
    --heading-letter-spacing: -0.02em;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter', sans-serif;
    background:var(--light-color);
    color:var(--dark-color);
    overflow-x:hidden;
    line-height:var(--body-line-height);

}

h1,h2,h3,h4,h5,h6{
    font-family:var(--heading-font-family);
    line-height:var(--heading-line-height);
    letter-spacing:var(--heading-letter-spacing);
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

img{
    width:100%;
    display:block;
}

/* PRELOADER */

#preloader{

    position:fixed;
    inset:0;
    background:#fff;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

}

.loader-wrapper{
    text-align:center;
}

.loader-circle{

    width:80px;
    height:80px;

    border-radius:50%;
    border:5px solid #eee;
    border-top:5px solid var(--secondary-color);

    animation:spin 1s linear infinite;

    margin:auto;
    margin-bottom:20px;

}

.loader-wrapper h2{

    font-family:'Manrope', sans-serif;
    font-size:24px;
    font-weight:800;

    color:var(--primary-color);

}

/* NAVBAR */

.custom-navbar{

    padding:18px 0;
    transition:0.4s ease;
    background:transparent;

}

.custom-navbar.scrolled{

    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);

    box-shadow:var(--shadow);

    padding:12px 0;

}

.logo-box{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo-placeholder{

    width:50px;
    height:50px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );

}

.logo-text span{

    display:block;
    font-size:22px;
    font-weight:800;
    color:var(--primary-color);

}

.logo-text small{

    letter-spacing:3px;
    color:var(--secondary-color);

}

.navbar-nav{
    gap:15px;
}

.nav-link{

    color:var(--dark-color);
    font-weight:600;
    position:relative;

}

.nav-link:hover,
.nav-link.active{

    color:var(--secondary-color);

}

.nav-link::after{

    content:'';

    position:absolute;
    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:var(--secondary-color);
    transition:0.4s ease;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

/* BUTTON */

.btn-primary-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );

    color:#fff;
    font-weight:600;

    box-shadow:0 10px 25px rgba(247,232,139,0.3);

    position:relative;
    overflow:hidden;

}

.btn-primary-custom:hover{

    transform:translateY(-3px);
    color:#fff;

}

/* FOOTER */

.main-footer{

    position:relative;
    padding-top:120px;

    background:#0f172a;
    color:#fff;

    overflow:hidden;

}

.footer-overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(247,232,139,0.2),
    transparent 40%);

}

.footer-brand p{

    margin-top:25px;
    line-height:1.9;
    color:#cbd5e1;

}

.footer-socials{

    display:flex;
    gap:15px;
    margin-top:30px;

}

.footer-socials a{

    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.08);
    color:#fff;

}

.footer-socials a:hover{

    background:var(--secondary-color);
    transform:translateY(-5px);

}

.main-footer h4{

    margin-bottom:30px;
    font-size:20px;
    font-weight:700;

}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{

    color:#cbd5e1;

}

.footer-links a:hover{

    color:var(--secondary-color);
    padding-left:5px;

}

.newsletter-form{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.newsletter-form input{

    height:55px;
    border:none;
    border-radius:12px;

    padding:0 18px;

}

.newsletter-form button{

    height:55px;

    border:none;
    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );

    color:#fff;
    font-weight:600;

}

.footer-bottom{

    margin-top:80px;
    padding:25px 0;

    border-top:1px solid rgba(255,255,255,0.1);

}

.footer-bottom a{

    color:#cbd5e1;
    margin-left:20px;

}

.footer-bottom a:hover{
    color:var(--secondary-color);
}

/* CURSOR */

.custom-cursor{

    position:fixed;

    width:20px;
    height:20px;

    border:2px solid var(--secondary-color);
    border-radius:50%;

    pointer-events:none;

    transform:translate(-50%, -50%);
    z-index:9999;

}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{

        background:#fff;
        padding:30px;
        border-radius:20px;
        margin-top:20px;

    }

    .navbar-nav{
        margin-bottom:25px;
    }

}

@media(max-width:768px){

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom a{
        margin:0 10px;
    }

}