/* Bottom Bar */
.bottom-bar {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
}

.logo-img{
    max-height:50px;
}


.navbar {
  font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffd700 !important;
    padding: 25px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 400;
    padding: 30px 20px !important;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #ffd700 !important;
}

.nav-link.active {
    color: #ffd700 !important;
}

.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link::before {
    top: 25px;
    left: 20px;
}

.nav-link::after {
    bottom: 25px;
    right: 20px;
}

.nav-link:hover::before,
.nav-link:hover::after,
.nav-link.active::before,
.nav-link.active::after {
    width: calc(100% - 40px);
}

/* Search Box */
.search-box {
    position: relative;
    margin-right: 25px;
}

.search-box input {
    width: 250px;
    padding: 10px 45px 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    background: #2f3640;
    color: #ffffff;
    transition: all 0.3s;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-box input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(47, 54, 64, 0.8);
}

.search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #ffffff;
    transition: color 0.3s;
}

.search-box button:hover {
    color: #ffd700;
}

/* Icons */
.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.nav-icon:hover {
    color: #ffd700;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffd700;
    color: #1a1a1a;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    font-weight: 500;
}

/* Dropdown */
.dropdown-menu {
    margin-top: 0;
    background: #2f3640;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 25px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(255,215,0,0.1);
    color: #ffd700;
    padding-left: 30px;
}

.dropdown-divider {
    border-color: rgba(255,255,255,0.1);
}
.navbar-dropicon{
    color:#fff;
}
/* Responsive */
@media (max-width: 1199px) {
    .navbar-brand {
        font-size: 2rem;
        padding: 15px 0;
    }

    .navbar-toggler {
        border: 1px solid rgba(255,255,255,0.1);
        padding: 8px 12px;
        color: #ffffff;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .nav-link {
        padding: 12px 20px !important;
    }

    .nav-link::before,
    .nav-link::after {
        display: none;
    }
    .dropdown-menu::before,
    .dropdown-menu::after{
        display:none !important;
    }
    .dropdown-toggle::before,
    .dropdown-toggle::after{
        display:none !important;
    }
    .search-box {
        width: 100%;
        margin: 15px 0;
    }

    .search-box input {
        width: 100%;
    }

    .nav-icons {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-icons {
        gap: 15px;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}