
/* General Styles */
body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Max-width container to prevent over-stretched content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 900;
}

header img {
    height: 75px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
}

#mobile-menu {
    display: flex;
}

/* Primary Button Styles */
.btn-primary {
    background-color: #8B0000; /* Dark red background */
    color: #FFD700; /* Gold text color */
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none; /* Ensure no underline on text */
}

.btn-primary a {
    color: #FFD700; /* Ensure the link inside the button is gold */
    text-decoration: none;
    display: block; /* Ensure the link takes up the full space of the button */
}

.btn-primary:hover {
    background-color: #A52A2A; /* Slightly lighter red on hover */
}

.btn-primary a:hover {
    color: #FFFFFF; /* Change text color on hover if needed */
}

.btn-primary:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.8); /* Add a subtle glow effect */
}
/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
    background-color: #111;
}

.hero {
    padding: 40px 20px;
    /*background: url('casino-background3.jpg') no-repeat center center/cover;*/
    position: relative;
    color: #FFD700;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1,
.hero p {
    position: relative;
    z-index: 2;
}

.hero button {
    background-color: #8B0000; /* Dark red background */
    color: #eeD700; /* Gold text color */
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none; /* Ensure no underline on text */
}
.hero button  a {
    color: #FFD700; /* Ensure the link inside the button is gold */
    text-decoration: solid;
    display: block; /* Ensure the link takes up the full space of the button */
}
.about .columnabout,
.howitworks .columnhowitworks,
.packages .columnpkg, 
.whatitlookslike .columnwhatitlookslike {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.home {
    background: url('homebackground1.jpg') no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.about .columnabout:hover,
.howitworks .columnhowitworks:hover,
.whatitlookslike .columnwhatitlookslike:hover,
.packages .columnpkg:hover {
    transform: scale(1.05);
}

.about h2,
.howitworks h2,
.packages h2,
.faq h2,
.whatitlookslike h2,
.contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #FFD700;
}

/* Footer Styles */
footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    color: #fff;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 10px;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons img {
    height: 30px;
    margin: 0 5px;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #222;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
}

.faq-question {
    cursor: pointer;
    background-color: #FFD700;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    font-weight: bold;
    color: #000;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    margin-top: 5px;
    color: #FFD700;
}

/* Grid Layout for Desktop */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Responsive Styles */
@media (max-width: 768px) {
    


    nav ul {
        flex-direction: column;
        display: none;
    }

    nav ul.nav-open {
        display: flex;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
    }
.hero {
        width: 100%;
        margin-bottom: 10px;
        position: absolute;
}    
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .about .columnabout,
    .howitworks .columnhowitworks,
    .packages .columnpkg, 
    .home .columnhome,
    .whatitlookslike .columnwhatitlookslike .hero {
        width: 100%;
        margin-bottom: 20px;
    }

    .faq-container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 15px;
    }
    .columnabout img {
        height: 50px;
        margin-bottom: 15px;
    } 
    .columnabout h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: #FFD700;
    }
    
    .columnabout p {
        font-size: 1em;
        color: #fff;
    }
    
}

/* Lightbox container */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.lightbox {
    display: none; /* Initially hide the lightbox */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background with some transparency */
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border: 5px solid white;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
