/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo {
    font-size: 1.5em;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    padding: 15px;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar .nav-links li a:hover {
    color: #ddd;
}

/* Hero Section Styles */
.hero {
    background: url('https://oldvegaschips.com/las%20vegas.webp') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive Navigation */
/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* Hide nav-links on mobile */
@media screen and (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* Hide nav links on mobile */
        flex-direction: column;
        width: 100%;
    }

    .hamburger {
        display: block; /* Show hamburger icon on mobile */
    }

    .navbar .nav-links.active {
        display: flex; /* Show nav links when active */
    }
}


/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
