body {
    margin: 0;
    background: #080808;
    color: #eeeeee;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* Navigation */

header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}


.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #ffffff;
}


.links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    letter-spacing: 2px;
}


.links a:hover {
    color: #b22222;
}


/* Hero Section */

.hero {

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.95)
    ),
    url("background.jpg");

    background-size: cover;
    background-position: center;

    padding: 0 20px;
}


.hero img {

    width: 320px;
    max-width: 80%;
    margin-bottom: 30px;

}


h1 {
    font-family: 'Cinzel', serif;
    font-size: 65px;
    letter-spacing: 10px;
    line-height: 1.15;
    margin: 20px 0;
    text-transform: uppercase;
    text-shadow:
        0 0 10px #000,
        0 0 25px #000;
}


.hero p {

    max-width: 700px;
    font-size: 20px;
    color: #cccccc;

}


/* Buttons */

.button {

    margin-top: 30px;

    padding: 15px 35px;

    border: 2px solid #eeeeee;

    color: white;

    text-decoration: none;

    letter-spacing: 3px;

    transition: .3s;

}


.button:hover {

    background: white;
    color: black;

}


/* Content Sections */

section {

    padding: 80px 10%;
    text-align: center;

}


h2 {

    font-size: 40px;

    letter-spacing: 6px;

    margin-bottom: 40px;

}


.card {

    border: 1px solid #333;

    padding: 30px;

    margin: 30px auto;

    max-width: 600px;

    background: #111;

}


/* Footer */

footer {

    padding: 30px;

    text-align: center;

    border-top: 1px solid #222;

    color: #777;

}


/* Mobile adjustments */

@media (max-width: 700px) {

    nav {

        flex-direction: column;

    }


    .links {

        margin-top: 20px;

    }


    .links a {

        margin: 10px;

    }


    h1 {

        font-size: 34px;

        letter-spacing: 4px;

    }


    h2 {

        font-size: 30px;

    }

}
/* Music Section */


.music-card {

    display:flex;

    align-items:center;

    gap:40px;

    max-width:900px;

    margin:40px auto;

    padding:40px;

    background:#111;

    border:1px solid #333;

}


.album-art img {

    width:220px;

    height:220px;

    object-fit:cover;

    border:2px solid #555;

}



.music-info {

    text-align:left;

}



.music-info h3 {

    font-family:'Cinzel', serif;

    font-size:32px;

    letter-spacing:4px;

}



.music-buttons {

    margin-top:30px;

}



.music-button {

    display:inline-block;

    margin:8px;

    padding:12px 25px;

    border:1px solid #aaa;

    color:white;

    text-decoration:none;

    letter-spacing:2px;

}


.music-button:hover {

    background:white;

    color:black;

}


/* Mobile Music Layout */

@media(max-width:700px){

    .music-card {

        flex-direction:column;

        text-align:center;

    }


    .music-info {

        text-align:center;

    }

}
/* Video Section */

.video-card {

    max-width:800px;

    margin:40px auto;

    padding:30px;

    background:#111;

    border:1px solid #333;

}


.video-card iframe {

    width:100%;

    aspect-ratio:16/9;

}


.video-card h3 {

    font-family:'Cinzel', serif;

    font-size:28px;

    letter-spacing:3px;

    margin-top:25px;

}
/* Video Grid */

.video-grid {

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:40px;

    max-width:1000px;

    margin:40px auto;

}


.video-card {

    background:#111;

    border:1px solid #333;

    padding:25px;

}


.video-card iframe {

    width:100%;

    aspect-ratio:16/9;

}


.video-card h3 {

    font-family:'Cinzel', serif;

    letter-spacing:3px;

    margin-top:20px;

}


@media(max-width:700px){

.video-grid {

    grid-template-columns:1fr;

}

}
/* Photo Gallery */

.photo-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    max-width: 1000px;

    margin: 40px auto;

}


.photo-card {

    overflow: hidden;

    border: 1px solid #333;

    background: #111;

}


.photo-card img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    transition: transform .4s ease;

}


.photo-card img:hover {

    transform: scale(1.08);

}


/* Mobile Photo Layout */

@media(max-width:700px) {

    .photo-grid {

        grid-template-columns: 1fr;

    }


    .photo-card img {

        height: auto;

    }

}
