/* Reset default styles and set base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles for the body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1a1a1a;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header and Navigation */
header {
    background-color: #1a1a1a;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.nav-brand h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.nav-brand a {
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: #ffd700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

/* Hamburger menu icon */
.hamburger {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: 0;
}

.hamburger::after {
    bottom: 0;
}

.hamburger span {
    top: 50%;
    transform: translateY(-50%);
}

/* Main content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Coming Soon styles */
.coming-soon {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #1a1a1a;
    color: white;
}

.article-meta {
    color: #ffd700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.article-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: white;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content {
    padding: 2rem;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.coming-soon-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.coming-soon-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.coming-soon-content li::before {
    content: "•";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Newsletter signup */
.newsletter-signup {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 1rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #333;
}

/* Site footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 3rem;
    text-align: center;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a1a1a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
}

/*Music section css*/
.music-section {
    padding: 10px;
    text-align: center;
}
.music-link {
    text-align: center;
    border: 1px black solid;
    border-radius: 9px;
}

.music-section-1{
    padding: 10px;
    text-align: center;
    
}
.music-link-1 {
    text-align: center;
    border: 1px black solid;
    border-radius: 9px;
}
.in-img {
    width: 50rem;
}
/*extra comment*/

/* Responsive design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-links.active {
        display: flex;
        max-height: 300px;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1003;
    }

    /* Hamburger menu animation */
    .mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 14px;
    }

    .mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        bottom: 14px;
    }

    .mobile-menu-toggle[aria-expanded="true"] .hamburger span {
        opacity: 0;
    }

    /* Push main content down when menu is active */
    main {
        transition: transform 0.3s ease-out;
    }

    main.menu-active {
        transform: translateY(300px);
    }

    .article-content {
        padding: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .main-nav {
        padding: 0.5rem;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .article-header h2 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 0.8rem;
    }
}

/* Print styles */
@media print {
    .main-nav,
    .newsletter-signup,
    .back-to-top {
        display: none;
    }

    body {
        background-color: white;
    }

    .article-content {
        box-shadow: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background-color: white;
    }

    .article-content {
        border: 2px solid #000;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}
