/* Reset and body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(to bottom, #5a33dc 0%, #121212 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    background-color: #1f1f1f;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffcc00;
}

nav ul.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul.nav-list li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

nav ul.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

nav ul.nav-list li a:hover::after {
    width: 100%;
}

nav ul.nav-list li a:hover {
    color: #ffcc00;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #ffcc00;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.cta-button {
    padding: 15px 35px;
    background-color: #ffcc00;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #121212;
    cursor: pointer;
    transition: all 0.3s ease;
    
}
.cta-button a{
    text-decoration: none;
    color: #121212;
}

.cta-button:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    ul.nav-list {
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        flex-direction: column;
        background-color: #1f1f1f;
        border-radius: 8px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    ul.nav-list.active {
        max-height: 500px; /* open menu */
    }

    ul.nav-list li {
        padding: 15px;
        text-align: center;
    }
}

/* About Section */
.about-hero {
    max-width: 800px;
    margin: 50px auto;
    text-align: left;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #5a33dc 0%, #121212 100%);
    border-radius: 12px;
    border: 2px solid #ffcc00;
    color: #e0e0e0;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
    text-align: center;
}

.about-hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-hero strong {
    color: #ffcc00;
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.gallery-section h1 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px; /* closer images */
    justify-content: center;
    align-items: start;
}

.gallery-img {
    width: 100%;
    height: auto;      /* maintain aspect ratio */
    border-radius: 8px;
    border: 2px solid #ffcc00;
    display: block;
    object-fit: cover;  /* fill grid cell nicely */
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.5);
}

/* Dashboard Section */
.dashboard-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.dashboard-section h1,
.dashboard-section h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

#addImageForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

#addImageForm input {
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
}

#addImageForm .cta-button {
    padding: 12px 25px;
    background-color: #ffcc00;
    color: #121212;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#addImageForm .cta-button:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}
.lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
        }
        .lightbox:target {
            display: flex;
        }
/* Music Section */
.music-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.music-section h1 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 30px;
}


.music-embed {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.music-embed:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.5);
}

/* Responsive YouTube embeds */
.music-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.music-grid .iframe-container {
    position: relative;
    width: 100%;
    max-width: 360px; /* max width for large screens */
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.music-grid .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


