/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    font-family: "Orbitron", sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== PAGE BACKGROUND ===== */
body {
    background: #121212;
    font-family: 'Roboto Serif', serif;
    color: #E5E5E5;
}

/* ===== NAVBAR ===== */
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 20px;
    background: #0c0c0e;
    border-bottom: 1px solid #2b2b2b;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #ff4d4d;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1d 0%, #0c0c0e 100%);
        border-bottom: 2px solid #ff4d4d;
        padding: 20px 0;
        box-shadow: 0 8px 32px rgba(255, 77, 77, 0.2);
        animation: slideDown 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
        margin: 0;
        gap: 0;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu.show {
        display: flex !important;
    }

    .menu li {
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid #333;
        animation: fadeInUp 0.3s ease forwards;
        margin: 0;
    }

    .menu li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .menu li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .menu li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .menu li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .menu li:nth-child(5) {
        animation-delay: 0.25s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu li a {
        display: block;
        padding: 5px 15px;
        color: #c9cfd8;
        transition: 0.3s ease;
    }

    .menu li a:hover {
        color: #ff4d4d;
    }

    .menu li a:active {
        color: #ff4d4d;
    }
}

/* ===== LOGO SECTION ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.dra-LOGO {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    transition: 0.3s;
}

.dra-LOGO:hover {
    transform: scale(1.1);
}

.title {
    font-size: 22px;
    font-weight: 900;
    color: #ff4d4d;
    letter-spacing: 1px;
}

.tag {
    color: #bfbfbf;
    font-size: 14px;
    margin-top: 3px;
}

/* ===== NAV LINKS ===== */
.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 40px;
}

.menu li a {
    color: #c9cfd8;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4d4d;
    transition: width 0.3s ease;
}

.menu li a:hover {
    color: #ff4d4d;
}

.menu li a:hover::after {
    width: 100%;
}

/* Default: Hide on screens below 768px */
@media (max-width: 768px) {
    .menu {
        gap: 0;
        margin-right: 0;
    }
}

main {
    margin-top: 140px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff4d4d, 
    #ff4d4d);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #2a2f3a;
    color: white !important;
}

.member-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #ff4d4d, #101010);
    margin: 30px auto;
    width: 80%;
    opacity: 0.6;
}

/* ===== MEMBER SECTION ===== */
.member-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 20px;
    border-bottom: 2px solid #333;
    background: linear-gradient(135deg, rgba(30, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.member-card:hover {
    background: linear-gradient(135deg, rgba(50, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    box-shadow: 0 0 20px #0b0e13;
}

.members {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.members:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px #080808;
}

figcaption {
    flex: 1;
    min-width: 0;
}

/* ===== MEMBER NAME ===== */
figcaption h3 {
    color: #FF4D4D;
    margin-bottom: 15px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

figcaption p {
    color: #e5e5e5;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.Music-Band-footer {
    background: #111;
    color: #bbb;
    text-align: center;
    padding: 25px 0;

    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #0c0c0e;
    align-items: center;
}

.Music-Band-footer .links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 6px;
    transition: 0.3s;
    font-size: 15px;
}

.Music-Band-footer .links a:hover {
    color: #ff4d4d;
    text-decoration: underline;
}

.Music-Band-footer .copy {
    font-size: 14px;
    margin: 8px 0;
    color: #888;
}

.Music-Band-footer .country a {
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.Music-Band-footer .country a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
.logo h1,
.member-card h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff4d4d;
    /* accent red */
}

p,
figcaption {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.albums {
    padding: 40px 20px;
    background-color: #181818;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #FF3C3C;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center;
}

.album-card {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #2a2f3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px #b0b0b0;
}

.album-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.album-card p {
    color: #E5E5E5;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 0;
}


header {
    text-align: center;
    padding: 40px;
    background: radial-gradient(circle, #0b0e13, #000);
    border-bottom: 2px solid #1a1a1d;
}

header h1 {
    font-size: 60px;
    letter-spacing: 3px;
    text-shadow: 0 0 18px #2a2f3a;
}

.tour {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    background: linear-gradient(135deg,#0f121a, rgba(0, 0, 0, 0.7));
    padding: 35px 20px;
    border-radius: 20px;
    border: 2px solid #600000;
    box-shadow: 0 0 30px #141814;
    transition: .3s;
}

.tour:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px #2b2c30;
}

.tour h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #1a1a1d;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery img {
    width: 100%;
    max-width: 32%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #660000;
    transition: .3s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #141814;
}

p {
    font-size: 20px;
    line-height: 30px;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 20px;
    background: #080808;
    border-top: 2px solid #9b0000;
    margin-top: 60px;
}

.hero {
    background-image: url('../images/band members.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Optional: add semi-transparent overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: 1;
}

/* Content stays above overlay */
.hero h1,
.hero p,
.hero a {
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}


/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */

/* Large Screens (1400px and above) */
@media (min-width: 1400px) {

    .member-card,
    .tour {
        max-width: 1200px;
    }
}

/* Desktops (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {

    .member-card,
    .tour {
        max-width: 1100px;
    }
}

/* Large Tablets & Small Laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gallery img {
        max-width: 48%;
    }

    .menu {
        gap: 15px;
        margin-right: 10px;
    }

    header h1 {
        font-size: 40px;
    }

    .tour h2 {
        font-size: 28px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    nav {
        padding: 12px 15px;
    }

    .logo {
        gap: 8px;
    }

    .dra-LOGO {
        width: 55px;
        height: 55px;
    }

    .member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gallery img {
        max-width: 100%;
        height: 200px;
    }

    .members {
        max-width: 160px;
    }

    .title,
    .logo h1 {
        font-size: 18px;
    }

    main {
        margin-top: 130px;
    }

    .tour {
        padding: 25px;
    }

    .tour h2 {
        font-size: 24px;
    }

    header h1 {
        font-size: 36px;
    }

    .album-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Mobile Devices (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .logo {
        gap: 8px;
        flex: 1;
    }

    .dra-LOGO {
        width: 50px;
        height: 50px;
    }

    .title,
    .logo h1 {
        font-size: 16px;
    }

    .tag {
        font-size: 12px;
    }

    main {
        margin-top: 120px;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    figcaption h3 {
        font-size: 20px;
    }

    figcaption p {
        font-size: 14px;
    }

    .member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 30px auto;
        gap: 20px;
    }

    .members {
        max-width: 130px;
    }

    .gallery {
        gap: 10px;
    }

    .gallery img {
        max-width: 100%;
        height: 180px;
    }

    .album-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .album-card {
        padding: 10px;
    }

    .tour {
        padding: 20px;
        margin: 30px auto;
    }

    .tour h2 {
        font-size: 18px;
    }

    header h1 {
        font-size: 28px;
        padding: 30px 20px;
    }

    header {
        padding: 20px;
    }

    p {
        font-size: 15px;
        line-height: 22px;
    }

    .member-divider {
        width: 90%;
    }

    footer {
        padding: 20px;
        font-size: 14px;
    }
}

/* Small Mobile Devices (Below 480px) */
@media (max-width: 479px) {
    nav {
        padding: 10px 12px;
        gap: 0;
    }

    .logo {
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

    .logo h1 {
        font-size: 14px;
        white-space: normal;
        word-break: break-word;
    }

    .dra-LOGO {
        width: 45px;
        height: 45px;
    }

    .tag {
        display: none;
    }

    main {
        margin-top: 110px;
    }

    .hero {
        padding: 50px 12px;
    }

    .hero h1 {
        font-size: 20px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 13px;
        margin: 10px 0;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
        display: inline-block;
        margin-top: 10px;
    }

    figcaption h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    figcaption p {
        font-size: 13px;
        line-height: 1.5;
    }

    figcaption {
        padding: 0 10px;
    }

    .member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 25px auto;
        padding: 15px;
        gap: 15px;
        border-bottom: 1px solid #333;
    }

    .members {
        max-width: 100px;
        max-height: 120px;
    }

    .member-divider {
        width: 95%;
        margin: 20px auto;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
    }

    .gallery img {
        width: 100%;
        height: 150px;
        max-width: 260px;
        object-fit: cover;
    }

    /* 3rd image center me full row */
    .gallery img:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .album-card {
        padding: 8px;
    }

    .album-card img {
        margin-bottom: 8px;
    }

    .album-card p {
        font-size: 12px;
    }

    .albums h2 {
        font-size: 22px;
    }

    .tour {
        padding: 15px;
        margin: 20px auto;
        border-radius: 12px;
    }

    .tour h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .tour ul li {
        margin-bottom: 8px;
    }

    header {
        padding: 15px 12px;
    }

    header h1 {
        font-size: 22px;
        padding: 15px 0;
        letter-spacing: 1px;
    }

    p,
    .tour p {
        font-size: 14px;
        line-height: 20px;
    }

    .Music-Band-footer {
        padding: 15px;
    }

    .Music-Band-footer .links {
        font-size: 12px;
    }

    .Music-Band-footer .links a {
        font-size: 12px;
    }

    .Music-Band-footer .copy {
        font-size: 12px;
        margin: 5px 0;
    }

    footer {
        padding: 15px 12px;
        font-size: 12px;
    }

    footer a {
        font-size: 12px;
    }
}