:root {
    --bb-black: #000000;
    --bb-yellow: #FFC107;
    --bb-white: #FFFFFF;
    --bb-dark-gray: #212529;
}

body {
    background-color: var(--bb-black);
    color: var(--bb-white);
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom styles for Bootstrap components */
.custom-header-bg {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bb-yellow);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.custom-toggler {
    border-color: var(--bb-yellow);
}

.custom-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 193, 7, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-nav-links .nav-link {
    color: var(--bb-white) !important;
    position: relative;
    padding-bottom: 0.5rem;
}

.custom-nav-links .nav-link:hover {
    color: var(--bb-yellow) !important;
}

.custom-nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: var(--bb-yellow);
    transition: transform 0.3s ease-in-out;
}

.custom-nav-links .nav-link:hover::after,
.custom-nav-links .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.custom-hero-bg {
    background-image: url('../images/8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.5s ease-out;
}

.custom-hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.custom-blur-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 2px solid var(--bb-yellow);
}

.custom-btn-pulse:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.custom-card-img {
    height: 250px;
    object-fit: cover;
}

.custom-hover-effect {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.hover-text-warning:hover {
    color: var(--bb-yellow) !important;
}

@media (max-width: 991.98px) {
    .custom-nav-links .nav-link {
        padding: 0.75rem 1.5rem;
        background-color: rgba(0, 0, 0, 0.9);
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .custom-nav-links .nav-link::after {
        content: none;
    }
    .custom-header-bg {
        background-color: rgba(0, 0, 0, 0.9);
    }
}