/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Styling */
/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #141414; /* Netflix background color */
}

/* Netflix Style Navbar */
.navbar {
    background-color: #141414; /* Dark background */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.navbar .logo {
    font-size: 24px;
    color: #e50914; /* Netflix red */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    position: relative;
}

.navbar .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #b3b3b3; /* Slight color change on hover */
}

.navbar .nav-buttons {
    display: flex;
    align-items: center;
}

.navbar .nav-buttons .nav-button {
    background-color: #e50914; /* Netflix red */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navbar .nav-buttons .nav-button:hover {
    background-color: #f40612; /* Slightly brighter red on hover */
}


/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #141414; /* Netflix background color */
}

/* Netflix Style Background */
.background {
    position: relative;
    height: 100vh;
    background: url('https://example.com/your-image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay with 60% opacity */
    z-index: 1;
}

/* Content on Top of Background */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.start-button {
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #e50914;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.start-button:hover {
    background-color: #f40612;
}

/* Netflix Style Footer */
.footer {
    background-color: #141414; /* Same dark background as the navbar */
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333; /* Subtle border to separate the footer */
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #757575; /* Light grey for links */
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff; /* White on hover */
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
}

.footer-social img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.7; /* Slight transparency on hover */
}

.footer-location p {
    color: #757575;
    font-size: 14px;
    margin: 10px 0;
}

.footer-copyright p {
    color: #757575;
    font-size: 12px;
    margin: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }

    .footer-social {
        margin-bottom: 15px;
    }
}


