﻿:root{
    --font-color: #212529;
    --bg-light: #F8F9FA;
    --bg-grey: #EBECED;
    --bg-dark:#131518;
    --bg-black: #111111;
}

html {
    min-height: 100%;
    position: relative;
    
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    display: block;
    margin: 0 0 110px 0;
    color: var(--font-color);
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}








.navbar {
    width: 100%;
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid var(--bg-grey);
}

.nav-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

#logo {
    width: 100px;
    padding: 15px 0 5px 0;
}








.header-image {
    width: 100%;
    height: 90vh;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.header-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}


.header-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.header-content h1 {
    font-size: 6em;
    margin: 0;
}

.header-content p {
    font-size: 2.5em;
    margin-top: 10px;
}








section {
    padding: 45px 0 55px 0;
}

.section-header {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.bg-light{
    background-color: var(--bg-light);
}

.bg-dark{
    background-color: var(--bg-dark);   
}

.text-center{
    text-align: center;
}

#contact p, #contact h2{
    color: #fff;
}






.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.custom-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
}






.custom-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.custom-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 50px;
}










.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}










footer {
    background-color: var(--bg-black);
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
}

footer p{
    color: #fff;
}

footer>div {
    padding: 30px;
}


footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    color: #fff;
}









@media (max-width: 2000px) {
    .header-image {
        height: 70vh;
    }
}

@media (max-width: 1400px) {
    .header-image {
        height: 50vh;
    }
    .header-content h1 {
        font-size: 4em;
    }
    
    .header-content p {
        font-size: 2em;
    }
}

@media (max-width: 992px) {
    .header-image {
        height: 35vh;
    }
    .header-content h1 {
        font-size: 3em;
    }
    
    .header-content p {
        font-size: 1.5em;
    }

    .custom-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 5px;
        padding-top: 10px;
    }

    .nav-links li {
        display: block;
    }

    #nav-links-separator {
        display: none;
    }
}

