
/* Navbar styles */
.navbar {
    background-color: transparent !important;
    width: 100%;
    z-index: 1000;
    padding: 5px;
    box-sizing: border-box;
}

.navbar-brand {
    color: white;
    display: flex;
    align-items: center;
}

.logo {
    width: auto;
    height: 40px; /* Fixed height instead of percentage */
    margin-right: 8px;
}

.signature-font {
    font-family: "Sassy Frass", sans-serif;
    font-size: 2rem; /* Responsive font size */
}

.nav-link {
    border-bottom: 2px solid transparent;
}

.nav-link.active {
    color: #fefeff;
    font-weight: bold;
    border-bottom-color: #939191;
}


.navbar-nav .nav-link {
    color: white;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

.gap {
    padding: 60px 0 30px;
    background-color: #000000;
}

/* Hide footer links on mobile */
@media (max-width: 767.98px) {
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        display: none;
    }
}

/* Footer styles */
.footer {
    position: relative;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Minimum height instead of fixed height */
}

.footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px 15px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    padding: 15px;
    min-width: 200px;
    text-align: center;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #cccccc;
}
