* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
}

:root {
    --main-color: #ff9f0d;
    --text-color: #fff;
    --other-color: #212121;
    --second-color: #9e9e9e;
    --bg-color: #111111;
    --big-font: 4.5rem;
    --h2-font: 2.6rem;
    --p-font: 1.1rem;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/*----------HEADER----------*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 30px 14%;
    transition: all .50s ease;
}

header .logo img {
    width: 300px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 33px;
    font-weight: 700;
}

.nav-list {
    display: flex;
}

.nav-list a {
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 600;
    margin: 0 30px;
    transition: all 0.50s ease;
}

.nav-list a:hover {
    color: var(--main-color);
}

.nav-list a.active {
    color: var(--main-color);
}

.nav-icons {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgb(19, 165, 19);
    border-radius: 3rem;
    box-shadow: #11b92d 0px 1px 15px;
}

.nav-icons a {
    font-size: 25px;
    color: var(--bg-color);
    transition: all 0.50s ease;
}

.nav-icons a span {
    vertical-align: middle;
    font-size: 16px;
    color: var(--bg-color);
    margin-left: 5px;
    transition: all 0.50s ease;
    font-family: "Poppins", serif;
    font-weight: 500;
}

.nav-icons a i {
    vertical-align: middle;
    font-size: 25px;
    color: var(--bg-color);
    transition: all 0.50s ease;
}

.nav-icons a:hover {
    transform: scale(1.1);
}

#menu-icon {
    font-size: 32px;
    color: var(--bg-color);
    z-index: 10001;
    cursor: pointer;
    display: none;
}

header.sticky {
    pad: 12px 14%;
    background: var(--other-color);
}

/*----------HOME----------*/
section {
    padding: 50px 14% 60px;
}

.home {
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("img/bg.jpg");
    background-size: cover;
    background-position: center;
}

.home-text h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px var(--second-color);
}

.home-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--other-color);
    color: var(--main-color);
    font-size: var(--p-font);
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 3rem;
    transition: all 0.50s ease;
    cursor: pointer;
}

.home-btn i {
    vertical-align: middle;
    margin-left: 9px;
    font-size: 20px;
}

.home-btn:hover {
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: #ff9f0d 0px 1px 25px;
}

.home-btn2 {
    display: inline-block;
    margin-left: 30px;
    font-size: var(--p-font);
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--main-color);
    color: var(--main-color);
    transition: all 0.50s ease;
}

.home-btn2:hover {
    transform: scale(1.1) translateX(12px);
}

.home-video iframe {
    border-radius: 15px;
    box-shadow: 0px 4px 12px var(--second-color);
    border: 2px solid var(--second-color);
    transition: transform 0.3s ease-in-out;
}

.home-video iframe:hover {
    transform: scale(1.05);
}

/*----------ABOUT-US----------*/
.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    font-size: var(--h2-font);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--second-color);
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 3rem;
}

/*----------CONTACT----------*/
.contact {
    padding: 50px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: var(--h2-font);
    margin-bottom: 40px;
    color: var(--text-color)
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.contact-form {
    text-align: center;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    resize: none;
    background-color: var(--text-color);
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 8px #bbb;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: var(--p-font);
    color: var(--text-color);
}

.contact-info i {
    margin-right: 10px;
    font-size: 30px;
}

/*----------FOOTER----------*/
.footer {
    background: var(--other-color);
    padding-top: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.footer-content {
    flex: 1; 
    min-width: 250px; 
    margin: 20px; 
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-content p {
    width: 190px;
    margin: auto;
    padding: 7px;
}

.footer-content a {
    text-decoration: none;
    color: var(--text-color);
}

.footer-content a:hover {
    color: var(--main-color);
}

.footer-content ul {
    text-align: center;
}

.footer-links li {
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
}

.footer-links li::before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition-duration: .5s;
}

.footer-links li:hover::before {
    width: 70px;
}

.social-icons {
    text-align: center;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    text-align: center;
    padding: 5px;
}

.social-icons i {
    color: white;
    font-size: 25px;
}

.social-icons i:hover {
    color: var(--main-color);
}

.footer-bar {
    background: var(--main-color);
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}

.footer-bar p {
    color: #111111;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}

/*----------ERROR----------*/
.error {
    width: 100vw; 
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    background-image: url(img/404.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.error h1 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.error a {
    margin: 40px;
}

/*----------SCROLL-TOP----------*/
.scroll {
    position: fixed;
    bottom: 2.2rem;
    border-top: 2rem;
    right: 3.2rem;
}

.scroll i {
    font-size: 22px;
    color: var(--text-color);
    background: var(--main-color);
    padding: 10px;
    border-radius: 2rem;
}

/*----------RESPONSIVE-DESIGN----------*/
@media (max-width: 1545px) {
    header {
        padding: 22px 4%;
        transition: .2s;
    }

    header.sticky {
        padding: 14px 4%;
        transition: .2s;
    }

    section {
        padding: 50px 4% 40px;
        transition: .2s;
    }
}

@media (max-width: 1180px) {
    :root {
        --big-font: 4rem;
        --h2-font: 2.2rem;
        --p-font: 15px;
    }

    .home {
        height: 85vh;
    }
}

@media (max-width: 1060px) {
    #menu-icon {
        display: initial;
    }

    .nav-list {
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        background: var(--other-color);
        transition: all .50s ease;
    }

    .nav-list a {
        display: block;
        padding: 0.5rem;
        margin: 1rem;
        border-left: 2px solid var(--main-color);
    }

    .nav-list.open {
        top: 100%;
    }
}

@media (max-width: 1045px) {
    :root {
        --big-font: 3.3rem;
        --h2-font: 2rem;
    }

    .home-video iframe {
        width: 100%;
        max-width: 490px;
    }

    .about-img img {
        width: 100%;
        max-width: 490px;
        height: auto;
    }

    .home {
        height: 70vh;
    }
}

@media (max-width: 860px) {
    .nav-icons i {
        font-size: 27px;
    }

    .nav-icons a span {
        display: none;
    }

    .home {
        grid-template-columns: 1fr;
        height: 118vh;
    }

    .home-text {
        text-align: center;
        padding-top: 100px;
    }

    .home-text h1 {
        font-size: 25px;
    }

    .home-video {
        text-align: center;
        padding-top: 50px;
        padding-bottom: 100px;
        width: 100%;
        height: 100%;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-img {
        text-align: center;
    }
}

@media screen and (max-width: 560px) {
    header .logo img {
        width: 250px;;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer-content p,
    .footer-links li,
    .footer-bar p {
        font-size: 14px;
    }

    .social-icons i {
        font-size: 20px;
    }
}

@media screen and (max-width: 475px) {
    :root {
        --big-font: 2.8rem;
        --h2-font: 2rem;
    }
}

@media screen and (max-width: 440px) {
    .home {
        height: 110vh;
        gap: 0.1rem;
    }
}