/* General Reset */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Navbar Base Styles */
.navbar {
    padding: 15px 30px;
    background-color: #a20f0f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar .navbar-brand .logo {
    width: 150px;
    height: auto;
}

.navbar-nav .nav-item {
    margin-left: 15px;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff7f00;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item {
    font-size: 1rem;
    color: #333;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff7f00;
}

/* Buttons */
/* Buttons */
.btn-orange, .btn-violet {
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 200px;  /* Added to ensure buttons are not too wide */
}

.btn-orange {
    background-color: #ff7f00;
    color: white;
}

.btn-orange:hover {
    background-color: #e56700;
    transform: scale(1.05);
}

.btn-violet {
    background-color: #6c4cff;
    color: white;
}

.btn-violet:hover {
    background-color: #5a3bcc;
    transform: scale(1.05);
}

/* Dancing Icons */
.dancing-icon {
    animation: bounce 1.5s infinite ease-in-out;
    font-size: 1.3rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}



/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .navbar-brand .logo {
        width: 120px;  /* Adjust logo size */
    }

    .navbar-nav {
        margin-top: 20px;
    }

    /* Adjust the buttons to a smaller size for mobile */
    .navbar-nav .nav-item a.btn {
        width: auto;
        text-align: center;
        margin-bottom: 10px;
        max-width: 150px;  /* Shorten button width in mobile */
    }

    .btn-orange, .btn-violet {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .dancing-icon {
        font-size: 1.2rem;
    }

    .navbar-nav .dropdown-menu {
        padding: 10px;
        font-size: 1rem;
    }

    .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar-toggler-icon {
        background-color: rgba(0, 0, 0, 0.7); /* Darker toggler icon */
        border-radius: 5px;
        width: 25px;
        height: 25px;
    }
}

