/* Mobile Navbar styles */
@media screen and (max-width: 768px) {
    .navbar ul {
        display: none; /* Hide the menu by default on mobile */
        flex-direction: column;
        width: 100%;
        background-color: #333;
        padding-top: 10px;
        position: absolute; /* Position menu under the navbar */
        top: 45px; /* Space below the navbar */
    }

    /* Show menu when 'open' class is added */
    .navbar.open ul {
        display: flex; /* Display the menu links */
    }

    /**********************************************/
    /* Hamburger Nav button styling */
    .menu-btn {
        display: block; /* Show the hamburger button */
        font-size: 10px;
        color: white;
        background-color: transparent;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 30px;
    }

    .navbar ul li {
        text-align: center;
        padding: 10px;
    }

    .navbar ul li a {
        color: white;
        font-size: 20px;
        text-decoration: none;
    }

    .navbar ul li a:hover {
        background-color: #444;
    }
    
    /**********************************************/
    /* General layout for the dashboard */
    .dashboard-container {
        margin-top: 30px;
        /*padding: 2px;  Add padding around the container */
        border-radius: 2px;
        width: 90%; /* Full width of the container */
        margin-left: auto;
        margin-right: auto; /* Horizontally center the container */
    }
    .dashboard-container h1 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .dashboard-container p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        padding: 2px;
        text-align: left;
    }
    
    .dashboard-container .btn {
        color: #fff;
        background-color: #E74C3C; /* Red button */
        padding: 4px 10px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        transition: all 0.3s ease;
    }
    
    .dashboard-container .btn:hover {
        background-color: #C0392B;
        transform: scale(1.1); /* Button hover effect */
    }
    
    /**********************************************/
    /* Hero Section with Background Image */
    .hero-section {
        position: relative;
        /*width: 100%;*/
        height: 100vh; /* 100% of viewport height */
        background-image: url('../images/Dawg_W_Logo.png'); /* Add your background image */
        background-size: contain; /* Ensure the image fits the width and maintains aspect ratio */
        background-position: center center; /* Center the image */
        background-repeat: no-repeat; /* Prevent repeating the background image */
        color: white;
        background-color: #000;
        text-align: center;
    }
    
    /**********************************************/
    /* gallery section
    
    /* Profile Container Styling */
    .gallery-container {
        margin-top: 40px;
        display: flex;
        flex-direction: column; /* Stack sections vertically */
        background-color: #333; /* Dark background for the container */
        border-radius: 5px;
        width:85%;
    }
    /* Left Section: User Info and Stats */
    .gallery-subcontainer {
        background-color: #fff;
        color:  #111;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%; /* Full width of the container */
    }
    .gallery-nav {
        background-color: #333;
        color: white;
        padding: 5px;
    }
    
    .gallery-nav ul {
        list-style-type: none;
        padding: 0;
    }
    
    .gallery-nav ul li {
        display: inline;
        margin-right: 5px;
    }
    
    .gallery-nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 13px;
    }
    
    .gallery-nav ul li a:hover {
        text-decoration: underline;
    }
    
    .gallery {
        padding: 2px;
    }
    
    .images {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .image-item {
        width: 100px;
        height: 100px;
        overflow: hidden;
        border: 1px solid #ccc;
    }
    
    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}


/* For very small screens (portrait mobile) */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 5px;
    }

    .nav-links li a {
        font-size: 9px; /* Smaller font size for links */
    }
}
