/* Basic Reset & Typography */
/* Add to top of your CSS */
html {
    background-color: #000; /* Match body background */
}


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000; /* Changed to black */
    color: #fff; /* Changed to white */
    line-height: 1.6; color: #333; 
}

/*body.no-scroll {
    overflow: hidden;
}*/

.container {
    width: 95%;
    margin: auto;
    /*overflow: hidden;*/
    padding: 0 1rem;
}

header {
    /*background: #1a1a1a;  Dark gray for header */
    display: flex;
    align-items: center;
    justify-content: center; /* Pushes hamburger to the left */
    position: sticky; /* Anchor for the centered logo */
    top: 0;
    border-bottom: 1px solid #333;
    padding: 1rem;
    min-height: 5em;
    z-index: 1001; /* Keep the header on top */
    background-color: #000; /* Ensure it has a solid background */
    /*margin-bottom: 2rem;*/
    /*min-height: 2em;*/
}

/* Default state for the hamburger button (Desktop) */
.menu-toggle {
    display: block; /* Hidden on desktop */
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    /*position: relative;*/
    /*top: -1rem;*/
}

.hamburger-icon {
    width: 100%;
    height: 100%;
}


.slapin-text {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    /*letter-spacing: 0.001em;*/
   /* background-color: #9d9ea0;*/
   text-shadow: 5px 5px 10px rgba(14, 14, 14, 0.5);
    
}

.site-title {
    /*position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);*/
    font-size: 1.5rem;
    margin: 0;
    flex-shrink: 0;
}

.site-title a {
   display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.site-title span {
    display: none; /* Hide text part of logo on mobile */
    white-space: nowrap; /* Prevent wrapping */
}

header h1 {
    margin: 0;
}


img.site-logo {
    height: 3.5em;
    width: 3.5em;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 100%;
    /*box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;*/
}

.main-nav {
    position: fixed; /* Covers the entire screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Solid black background */
    z-index: 1000;

    /* Center the navigation links vertically */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
    /* Animation: Start hidden above the screen */
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* The state when the menu is open */
.main-nav.is-open {
    /* Animation: Slide into view */
    transform: translateY(0);
    visibility: visible;
}

/* The new close button for the drawer */
.nav-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    color: #fff;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
}

.main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
    text-align: center;
    padding-top: 1rem; /* ADD this to create space from the top */
}

/* ADD THIS ENTIRE NEW RULE */
.main-nav ul li {
    display: block; /* Override the 'display: inline' */
    margin-right: 0; /* Reset the desktop margin */
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    background-color: #e6e6e6;
    border-radius: .4rem;
}
.main-nav ul li.games {
    background-color: #ff5733; /* A standout color like orange */
}

.main-nav ul li.about {
    background-color: teal; /* A standout color like orange */
}

.main-nav ul li.contact {
    background-color: gold; /* A standout color like orange */
}

.main-nav

nav ul {
    padding: 0;
    list-style: none;
    margin: 0.5rem 0 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
    
}

nav a {
    color: #fff; /* White nav links */
    color:#000;
    text-decoration: none;
    font-size: 1.75rem;
}

/* Style for the currently active navigation link */
nav a.active {
    /*color: #ffc107; /* A standout color like gold */
    font-weight: bold;
    text-decoration: underline;
}

nav a:hover {
    color: #0d0c0c; /* Lighter gray on hover */
}

/* Main Content */
main {
    padding: 2rem 0;
}

/* Styles for the slap card game image */
.slap-card {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.slap-card img {
    max-width: 10em; /* Max size on desktop */
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    border-top: 1px solid #333; /* Darker border */
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #aaa; /* Lighter gray for footer text */
}

/* Links */
 a {
    color: #fff; /* A nice light blue for links */
    text-decoration: none;
}

a:hover {
    color: #9d9ea0;
}

.hamburger-line {
    display: block;
    width: 80%;
    height: 3px;
    background-color: #fff;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

 .menu-toggle {
    position: absolute;
    right: 1.5rem; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002; /* Ensure it's above other elements */
} 

/* When the menu is open, transform the lines */
.menu-toggle.is-open .hamburger-line:nth-child(1) {
    /* Rotates the top line and moves it to the center */
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open .hamburger-line:nth-child(2) {
    /* Fades out the middle line */
    opacity: 0;
}

.menu-toggle.is-open .hamburger-line:nth-child(3) {
    /* Rotates the bottom line and moves it to the center */
    transform: translateY(-8px) rotate(-45deg);
}


.packages-container {
            max-width: 1200px;
            margin: 0 auto;
        }

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #333;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.package-card.featured {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.package-card.wombat .package-name {
    color: #ff6b6b;
}

.package-card.walrus .package-name {
    color: #4ecdc4;
}

.package-card.whale .package-name {
    color: #ffd700;
}

.featured-badge {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.checkmark {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.package-card.whale .cta-button {
    background-color: #ffd700;
}

.package-card.whale .cta-button:hover {
    background-color: #ffed4e;
}
/* Responsive Styles */
/* Responsive Styles for Mobile */
@media (min-width: 769px) {
    body {
        max-width: 800px;
        margin: 2rem auto; 
        padding: 0 1rem;
    }

    .packages-grid {
                grid-template-columns: repeat(3, 1fr);
            }

    .container {
        width: 80%;
        padding: 0 2rem;
    }

    header {
        display: flex;
        /*flex-direction: column; /* Stack items vertically */
        justify-content: space-between;
        flex-direction: column;
        align-items: center;     /* Center items horizontally */
        gap: 1rem;               /* Add space between title and nav */
        position: static;
        border-bottom: none;
    }

    /* Hide the hamburger on desktop */
    .menu-toggle {
        display: none;
    }

    /* Put the logo back in the normal flow on the left */
    .site-title {
        /*position: static;
        transform: none;*/
        font-size: 1.75rem;
    }

    /* Show the text part of the logo on desktop */
    .site-title span {
        display: inline;
    }

    img.site-logo {
        height: 4em;
        width: 4em;
    }

    nav a {
    /*color: #fff; /* White nav links */
    text-decoration: none;
    font-size: 1.40rem;
    }

    nav a:hover {
    color: #ccc; /* Lighter gray on hover */
    }

    /* Make nav visible and push it to the right */
    .main-nav {
        display: flex;
        position: static;
        width: auto;
        background: none;
        margin-left: 0; /* This pushes it to the right */
        visibility: visible;
        border-bottom: 1px solid #333;
        transform: none;
        transition: none !important
        /*flex-grow: 1;*/
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        padding: 0;
        width: 100%;
        gap: 2rem;
        justify-content: center;
    }

    /* ADD THIS NEW RULE to fix the conflict */
    .main-nav ul li {
        display: list-item; /* Overrides the global 'display: inline' */
        margin-right: 0; /* Reset the old margin */
        background-color:black;
    }

    .nav-close-btn {
        display: none; /* Hide the close button on desktop */
    }

    nav a {
    color: #fff; /* White nav links */
    text-decoration: none;
    font-size: 1.75rem;
}

    
}

