/*body*/
body {
    margin: 0;
    padding: 0;
    font-family: "Yeseva One", serif;
    background-color: #000;
    height: 100vh;
    color: #ffffff;
}

/*font*/
p {
    font-family: "Yeseva One", serif;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #ffffff;
}

h1 {
    /*this is for main title*/
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 100px;
    margin: 0;
    padding: 0;
}

h2 {
    /*this is for subtitle*/
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 50px;
    margin: 0;
    padding: 0;
}

h3 {
    /*this is for body title*/
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 32px;
    margin: 0;
    padding: 0;
}

h4 {
    /*this is for paragraph title*/
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

/*tablet size font*/
@media screen and (max-width: 820px) {
    p {
        font-family: "Yeseva One", serif;
        letter-spacing: 1px;
        line-height: 1.6;
        color: white;
        font-size: 15px;
    }

    h1 {
        /*this is for main title*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        font-size: 80px;
        margin: 0;
        padding: 0;
    }

    h2 {
        /*this is for subtitle*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        font-size: 45px;
        margin: 0;
        padding: 0;
    }

    h3 {
        /*this is for body title*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        font-size: 26px;
        margin: 0;
        padding: 0;
    }

    h4 {
        /*this is for paragraph title*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        font-size: 19px;
        margin: 0;
        padding: 0;
    }
}

/*mobile size font*/
@media screen and (max-width: 600px) {
    p {
        font-family: "Yeseva One", serif;
        letter-spacing: 1px;
        line-height: 1.6;
        color: white;
        font-size: 14px;
    }

    h1 {
        /*this is for main title*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        font-size: 75px;
        margin: 0;
        padding: 0;
    }

    h2 {
        /*this is for subtitle*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        font-size: 40px;
        margin: 0;
        padding: 0;
    }

    h3 {
        /*this is for body title*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        font-size: 21px;
        margin: 0;
        padding: 0;
    }

    h4 {
        /*this is for paragraph title*/
        font-family: "Yeseva One", serif;
        font-weight: 300;
        font-style: normal;
        font-size: 17px;
        margin: 0;
        padding: 0;
    }
}

/*navbar*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.logo-img {
    height: 60px;
    width: auto;
}

header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    background-color: #000000;
}

.navbar ul li {
    margin-right: -5px;
}

.navbar ul li a {
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ff8200;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

ul li a {
    display: block;
    padding: 20px 25px;
    color: #FFF;
    text-align: left;
}

/*submenu*/
.dropdown {
    position: relative;
    display: inline-block;
}

ul li ul.dropdown li {
    display: block;
    text-align: left;
}

ul li ul.dropdown {
    width: 15%;
    min-width: 150px;
    background: #000000;
    position: absolute;
    z-index: 999;
    display: none;
    text-align: left;
    cursor: pointer;
}

ul li:hover ul.dropdown {
    display: block;
}

/*submenu-long*/
.dropdown-long {
    position: relative;
    display: inline-block;
}

ul li ul.dropdown-long li {
    display: block;
    text-align: center;
}

ul li ul.dropdown-long {
    width: 15%;
    min-width: 150px;
    background: #000000;
    position: absolute;
    z-index: 999;
    display: none;
    text-align: center;
    cursor: pointer;
}

ul li:hover ul.dropdown-long {
    display: block;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin: 10px 20px;
}

.burger-menu span {
    display: block;
    height: 3px;
    background-color: #ff8200;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/*footer*/
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-section {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin-bottom: 0px;
}

.footer-section h3 {
    font-weight: 300;
    color: #ff8200;
    margin-bottom: 0px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style-type: none;
    padding: 10px 0px;
    margin: 0;
}

.footer-section li {
    margin: 30px 0;
}

.footer-contact {
    font-weight: 300;
    margin-top: 20px;
}

.footer-contact h3 {
    font-weight: bold;
    color: white;
    font-size: 18px;

}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 8px;
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 600px),
(max-width: 820px) {

    .burger-menu {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: black;
        width: 100%;
        padding: 10px 0;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    ul li ul.dropdown {
        position: relative;
    }

    ul li ul.dropdown-long {
        position: relative;
    }

    ul li:hover ul.dropdown {
        display: none;
    }

    ul li:hover ul.dropdown-long {
        display: none;
    }

    ul li:focus-within ul.dropdown {
        display: block;
    }

    ul li:focus-within ul.dropdown-long {
        display: block;
    }

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

    .footer-section {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .social-icons img {
        margin-top: 20px;
        width: 30px;
    }

    .footer-section h3 {
        min-height: 35px;
        font-size: 15px;
    }

    .footer-section ul {
        font-size: 13px;

    }

    .footer-bottom {
        font-size: 0.5rem;
    }

    .footer-contact h3 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}

/*footer*/
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-section {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-weight: 300;
    color: #ff8200;
    margin-bottom: 30px;
    font-size: 15px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style-type: none;
    padding: 10px 0px;
    margin: 0;
}

.footer-section li {
    margin: 30px 0;
}

/* Style for links */
.footer-section a {
    color: white;
    /* Set text to white */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s ease;
    /* Add hover effect */
}

.footer-section a:hover {
    color: #ff8200;
    /* Change color on hover */
}

.footer-contact {
    font-weight: 300;
    margin-top: 20px;
}

.footer-contact h3 {
    font-weight: bold;
    margin-top: 20px;
    color: white;
    font-size: 15px;

}

.social-icons img {
    margin-top: 20px;
    width: 50%;
}

.social-icons a {

    margin: 0 10px;
    display: inline-block;
}


.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    justify-content: center;
    display: flex;
}