         body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1b1c1c;
            color: #ffffff;
        }

        header {
            background-color: #58e4ac;
            color: #000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
box-shadow: 2px 2px 10px hsl(0deg 0% 0% / 10%);
         z-index: 10000;
        }

        header h1 {
            margin: 0;
            font-size: 1.5rem;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 1rem;
        }

        nav a {
            color: #1b1c1c;
            text-decoration: none;
            font-weight: 600;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
        }

        .menu-toggle div {
            width: 30px;
            height: 3px;
            background: #1b1c1c;
            margin: 5px 0;
            transition: 0.3s;
        }

        h2 {
            color: #59e4ac;
        }


.hero {
  position: relative;
  text-align: center;
  padding: 10rem 2rem;
  color: #ffffff;
  background-image: url(/header.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}
        .hero h2 {
            font-size: 2.5rem;
            margin: 0 0 1rem;
        }

        .hero p {
            font-size: 1.2rem;
        }

        section {
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .button {
            display: inline-block;
            background-color: #58e4ac;
            color: #1b1c1c;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 1rem;
        }

        footer {
            background-color: #58e4ac;
            color: #000;
            text-align: center;
            padding: 1rem 0;
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        footer a {
            color: #1b1c1c;
            text-decoration: none;
            font-weight: 600;
        }

        footer a:hover {
            color: #555;
        }

        .playlist {
            margin-top: 2rem;
        }

        .playlist iframe {
            width: 100%;
            height: 352px;
            border: none;
        }

        .spotify iframe {
            border-radius: 12px;
            width: 100%;
            height: 352px;
            margin-top: 2rem;
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

                 
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 0;
                background: #58e4ac;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
            }

            nav ul.show {
                display: flex;
            }

            nav li {
                margin: 10px 0;
            }
        }
