/* ===================================================== */
/* MR OUTLINER - GLOBAL STYLE SHEET */
/* ===================================================== */

/* ===================================================== */
/* GOOGLE FONTS */
/* ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ===================================================== */
/* RESET */
/* ===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

/* ===================================================== */
/* BODY */
/* ===================================================== */

body{
    background:#050505;
    color:#ffffff;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    line-height:1.7;
}

/* ===================================================== */
/* GLOBAL ELEMENTS */
/* ===================================================== */

a{
    text-decoration:none;
    color:#ffffff;
    transition:0.3s;
}

img{
    width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

section{
    padding:100px 0;
}

/* ===================================================== */
/* TYPOGRAPHY */
/* ===================================================== */

.section-title{
    text-align:center;
    font-size:48px;
    color:#d4af37;
    margin-bottom:60px;
    text-transform:uppercase;
    font-weight:800;
}

.section-subtitle{
    text-align:center;
    color:#bbbbbb;
    max-width:800px;
    margin:auto;
    margin-top:-30px;
    margin-bottom:60px;
    line-height:2;
}

/* ===================================================== */
/* BUTTONS */
/* ===================================================== */

.btn{
    display:inline-block;
    background:#d4af37;
    color:#000000;
    padding:16px 35px;
    border-radius:6px;
    font-weight:700;
    border:none;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#ffffff;
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-block;
    background:transparent;
    color:#d4af37;
    padding:16px 35px;
    border-radius:6px;
    border:1px solid #d4af37;
    font-weight:700;
    transition:0.3s;
}

.btn-outline:hover{
    background:#d4af37;
    color:#000000;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.88);
    backdrop-filter:blur(10px);
    z-index:999;
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:#d4af37;
}

.logo span{
    color:#ffffff;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    font-size:15px;
    font-weight:600;
    color:#ffffff;
}

.nav-links a:hover{
    color:#d4af37;
}

/* ===================================================== */
/* HERO SECTION */
/* ===================================================== */

.hero{
    height:100vh;

    background:
        linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.85)),
        url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content{
    max-width:900px;
}

.hero-content h1{
    font-size:85px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#d4af37;
}

.hero-content p{
    font-size:20px;
    line-height:2;
    color:#dddddd;
    margin-bottom:40px;
}

/* ===================================================== */
/* CARDS */
/* ===================================================== */

.card{
    background:#111111;
    border-radius:12px;
    border:1px solid #222222;
    overflow:hidden;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.card-content{
    padding:30px;
}

.card-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.card-content p{
    color:#bbbbbb;
    line-height:1.9;
}

/* ===================================================== */
/* GRID SYSTEM */
/* ===================================================== */

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ===================================================== */
/* ICON BOX */
/* ===================================================== */

.icon-box{
    background:#111111;
    border:1px solid #222222;
    border-radius:12px;
    padding:40px;
    text-align:center;
    transition:0.3s;
}

.icon-box:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.icon-box i{
    font-size:55px;
    color:#d4af37;
    margin-bottom:20px;
}

.icon-box h3{
    margin-bottom:15px;
    font-size:26px;
}

.icon-box p{
    color:#bbbbbb;
    line-height:1.9;
}

/* ===================================================== */
/* FORMS */
/* ===================================================== */

form{
    width:100%;
}

.form-group{
    margin-bottom:20px;
}

input,
textarea,
select{
    width:100%;
    padding:18px;
    background:#1a1a1a;
    border:1px solid #222222;
    border-radius:6px;
    color:#ffffff;
    font-size:15px;
    outline:none;
}

textarea{
    height:180px;
    resize:none;
}

input:focus,
textarea:focus,
select:focus{
    border-color:#d4af37;
}

/* ===================================================== */
/* TABLE */
/* ===================================================== */

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#111111;
    color:#d4af37;
    padding:20px;
    border:1px solid #222222;
}

table td{
    padding:20px;
    border:1px solid #222222;
    color:#cccccc;
}

/* ===================================================== */
/* FAQ */
/* ===================================================== */

.faq-box{
    background:#111111;
    border:1px solid #222222;
    border-radius:12px;
    padding:30px;
    margin-bottom:25px;
}

.faq-box h3{
    color:#d4af37;
    margin-bottom:15px;
}

.faq-box p{
    color:#bbbbbb;
    line-height:1.9;
}

/* ===================================================== */
/* SOCIAL ICONS */
/* ===================================================== */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#1a1a1a;
    border:1px solid #222222;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#d4af37;
    color:#000000;
}

/* ===================================================== */
/* NEWSLETTER */
/* ===================================================== */

.newsletter{
    background:#111111;
    padding:70px;
    border-radius:12px;
    text-align:center;
    border:1px solid #222222;
}

.newsletter p{
    color:#cccccc;
    max-width:700px;
    margin:auto;
    line-height:2;
    margin-bottom:35px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:350px;
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */

footer{
    background:#020202;
    padding:80px 0;
    text-align:center;
    border-top:1px solid #111111;
}

.footer-socials{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px 0;
}

.footer-socials a{
    width:50px;
    height:50px;
    border-radius:50%;
    border:1px solid #333333;

    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-socials a:hover{
    background:#d4af37;
    color:#000000;
}

footer p{
    color:#777777;
}

/* ===================================================== */
/* SCROLLBAR */
/* ===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111111;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:10px;
}

/* ===================================================== */
/* ANIMATIONS */
/* ===================================================== */

.fade-up{
    animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1200px){

    .grid-4{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .nav-links{
        display:none;
    }

    .hero-content h1{
        font-size:60px;
    }

    .grid-3,
    .grid-2{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .section-title{
        font-size:38px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:17px;
    }

    .newsletter{
        padding:40px;
    }

    .grid-4{
        grid-template-columns:1fr;
    }

}

@media(max-width:500px){

    .hero-content h1{
        font-size:36px;
    }

    .section-title{
        font-size:30px;
    }

    .btn,
    .btn-outline{
        width:100%;
        text-align:center;
    }

}