@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

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

* {
    scrollbar-width: thin;
    scrollbar-color: #FB9C0E transparent;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: black;
}

*::-webkit-scrollbar-thumb {
    background-color: #FB9C0E;
    border-radius: 20px;
    border: 3px solid transparent;
}

nav {
    background-color: #000000;
    display: flex;
    flex-direction: column;
}

nav .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

nav .separator {
    width: 100%;
    height: 1px;
    background-color: white;
}

nav .top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

nav .logo {
    display: flex;
    padding-left: 29px;
}

nav .logo a {
    border-radius: 50%;
    border-bottom: 3px solid #d97b0a;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: 0.5s ease;
}

nav .top .btnlogin {
    position: absolute;
    right: 10px;
}

nav .dropdown .ham {
    display: none;
}

nav .logo img {
    width: 140px;
    height: 130px;
}

nav .top button {
    color: white;
    background-color: transparent;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #FB9C0E;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav .top button:hover {
    background-color: #FB9C0E;
    border: 1px solid #FB9C0E;
    color: rgb(255, 255, 255);
}

nav a,
footer a {
    text-decoration: none;
}

nav ul {
    display: flex;
    margin: 15px 0;
    gap: 200px;
}

nav li a,
nav .dropdown button,
footer a {
    color: white;
    font-size: 16px;
    transition: 0.3s ease;
}

nav li a:hover,
nav .dropdown button:hover,
footer a:hover {
    color: #FB9C0E;
    background-color: transparent;
}

nav .dropdown {
    position: relative;
    display: inline-block;
}

nav .dropdown button {
    margin: 0;
    padding: 12px 15px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

nav .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

nav .dropdown-content a:hover {
    background-color: #FB9C0E;
}

nav .dropdown:hover .dropdown-content {
    display: block;
}

main .background {
    background-image: url('/assets/bg.jpg');
    background-size: cover;
    height: 500px;
    background-position: center;
}

main .title h1 {
    font-size: 40px;
    color: #d97b0a;
}

main .title {
    margin-top: 50px;
    text-align: center;
}

main .content {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 0 20%;
    font-size: 23px;
    text-align: justify;
    gap: 50px;
}

main .right .carousel {
    width: 100%;
    max-width: 2500px;
    margin: 0 auto;
    border-radius: 5px;
}

main .right .carousel-inner img {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

main .section2 {
    margin-top: 70px;
    padding: 0 150px;
}

main .section2 .card {
    box-shadow: 3px 2px 2px grey;
}

main .section2 h5 {
    font-size: 30px;
    color: #d97b0a;
}

main .section2 p {
    font-size: 20px;
}

main .section2 .btn {
    background-color: #d97b0a;
    border-color: #d97b0a;
    transition: 0.5s ease;
}

main .section2 .btn:hover {
    background-color: #be760a;
    border-color: #be760a;
}

footer {
    padding: 1rem;
    position: sticky;
    margin-top: 100px;
}

footer img {
    width: 150px;
    height: 140px;
}

@media (max-width: 1200px) {
    main .content {
        padding: 0 10%;
    }
}

@media (max-width: 768px) {
    nav ul {
        align-items: center;
        gap: 20px;
    }

    nav .logo img {
        width: 100px;
        height: 90px;
    }

    nav .top {
        flex-direction: column;
    }

    nav .dropdown .name {
        display: none;
    }

    nav .dropdown .ham {
        display: block;
    }

    main .title h1 {
        font-size: 25px;
    }

    main .title h5 {
        font-size: 20px;
    }

    main .content {
        flex-direction: column;
        padding: 0 5%;
    }

    main .section2 {
        padding: 0 20px;
    }   

}

@media (max-width: 480px) {
    nav .top button {
        padding: 10px;
        font-size: 14px;
    }

    nav .logo img {
        width: 80px;
        height: 70px;
    }

    main .title h1 {
        font-size: 20px;
    }

    main .title h5 {
        font-size: 16px;
    }

    main .content {
        font-size: 18px;
    }
}