/* Custom Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
}

#hero {
    height: 100vh;
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar Styles */
.navbar {
    background: transparent;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Adjusted Logo Image */
.logo-img {
    height: 80px; /* Increased size */
    max-height: 150px; /* Prevents it from overflowing excessively */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1); /* Slight hover effect */
}

/* Navbar Link Styles */
.nav-link {
    margin: 0 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.2s;
}

.nav-link:hover {
    color: #e50914;
    transform: scale(1.1);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-danger {
    font-weight: bold;
    border-radius: 50px;
    padding: 8px 20px;
}

/* Layout Adjustments */
.left-nav {
    margin-right: auto;
}

.right-nav {
    margin-left: auto;
}

/* Footer Styles */
footer {
    background-color: #181818;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}
