marquee {
    font-family: "Outfit", serif;
}

h1,
h2,
h3,
dt,th {
    font-family: "Outfit", serif;
}

p,
li,
a,
button,
article,
dd,td {
    font-family: "Outfit", serif;
}

.mobile-button-drop {
    display: flex;
    justify-content: space-between;
}

.arrow-down {
    width: 15px;
}

/* Navbar styles */
.Main-heading-div {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 20px 0px 40px 0px;
    letter-spacing: 0.2rem;
}

.Main-heading-div-heading {
    width: 60%;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    font-size: 2.1rem;
    font-weight: bold;
    color: orange;
}

.logo {
    width: 130px;
    height: 130px;
    margin: 0 0 55px 0;
}

.logo img {
    width: 100%;
    height: 100%;
}

.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 8;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/*  */

.social-icon-youtube {
    color: red;
    font-weight: bold;
    transition: all 0.3s;
}

.social-icon-facebook {
    color: blue;
    font-weight: bold;
    transition: all 0.3s;
}

.social-icon-insta {
    color: rgb(234, 5, 112);
    font-weight: bold;
    transition: all 0.3s;
}

.social-icon-facebook:hover,
.social-icon-insta:hover,
.social-icon-youtube:hover {
    transform: scale(1.5);
}

/*  */
.nav-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.dropdown-content a {
    color: #4b5563;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #4b5563;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #2563eb;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    height: 100%;
    display: none;
    background: white;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    overflow-y: scroll;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown {
    width: 100%;
}

.mobile-dropbtn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0.75rem 0.75rem 0.50rem;
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
}

.mobile-dropdown-content a,
.mobile-links a {
    color: #4b5563;
    padding: 0.5rem;
    text-decoration: none;
    display: block;
    margin-top: 5px;
}

.mobile-dropdown-content a,
.mobile-links a,
.mobile-dropbtn {
    font-size: 1rem;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .Main-heading-div {
        padding: 10px 0px 20px 0px;
    }

    .nav-links,
    .social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .logo {
        width: 80px !important;
        height: 80px !important;
        margin: 0;
    }

    .Main-heading-div {
        padding: 10px 0px;
    }

    .Main-heading-div-heading {
        position: relative;
        width: 100%;
    }
}