* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Bungee', sans-serif;
            background-color: #f5f1e8;
    background-image: 
        radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
    color: #2d1810;
    line-height: 1.6;
        }
        p {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

        /* HEADER & NAVIGATION */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .95rem 4rem;
               margin-bottom: .5rem;
        }

   .logo {
    width: 180px;
    height: 60px;
    background-image: url('MD_Logo_VB.png');
    background-size: contain;
          background-position: center;
    background-repeat: no-repeat;
    text-indent: -9999px;
}

        nav {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #2d1810;
            font-weight: bold;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .listen-btn {
            background-color: #F3BC16;
            border: 3px solid #2d1810;
            padding: 0.8rem 1.8rem;
            border-radius: 25px;
            color: #2d1810;
            font-weight: 850;
            cursor: pointer;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: transform 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .listen-btn:hover {
            transform: scale(1.05);
        }
.about-header {
    background-color: #32737B;
            margin-bottom: 0;
}

        /* HERO SECTION */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 4rem;
    align-items: center;
}
.new-record {
    display: inline-block;
    border: 2px solid #2d1810;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: #2d1810;
    font-weight: bold;
    letter-spacing: 1px;
}

.new-record::before {
    content: '●';
    margin-right: 0.5rem;
    color: #CA560B;
}
.hero-logo {
    width: 400px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
        .tagline {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 2rem;
            color: #2d1810;
        }

        .description {
            font-size: 0.95rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            color: #2d1810;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 30px;
            border: none;
            font-weight: bold;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            transform: scale(1.05);
        }

        .btn-primary {
            background-color: #CA560B;
            color: #F5F1E8;
            border: 3px solid #2d1810;
        }

        .btn-secondary {
            background-color: transparent;
            color: #2d1810;
            border: 2px solid #2d1810;
        }

        .album-art {
            position: relative;
            max-width: 85%;
        }

        .album-frame {
            background: linear-gradient(135deg, #F3BC16 0%, #F3BC16 100%);
            padding: 20px;
            border-radius: 20px;
            border: 5px solid #F3BC16;
            position: relative;
        }

        .album-frame::after {
            content: '';
            position: absolute;
            right: -30px;
            bottom: 20px;
            width: 60px;
            height: 120px;
            background-color: #32737B;
            border-radius: 10px;
            z-index: -1;
        }

.album-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    border: 3px solid #2d1810;
        }

        /* GENRE BAND */
.genre-band {
    background-color: #CA560B;
    color: #F5F1E8;
    padding: 0.1rem 4rem;
    margin-top: 2rem;
    border-top: 3px solid #2d1810;
    border-bottom: 3px solid #2d1810;
    text-align: left;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: pre;
    line-height: 1;
}
.genre-band span {
    display: inline-block;
    animation: scroll 510s linear infinite;
    margin-left: -10%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

        /* MUSIC SECTION */
        .music-section {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            padding: 2rem 4rem;
            margin-top: 3rem;
            align-items: center;
        }
.vinyl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.now-playing {
    align-self: stretch;
    text-align: left;
}
.now-playing-label {
    font-family: 'Inter', sans-serif;
    color: #CA560B;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.now-playing-title {
    font-family: 'Alfa Slab One', serif;
    color: #2d1810;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    line-height: 1;
    font-weight: 400;
}
.needle-word {
    font-family: 'Chango', cursive;
    color: #CA560B;
}
.vinyl-record-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    animation: spin 8s linear infinite;
    background-color: #F3BC16;
    object-fit: cover;
}
        @keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
        .menu {
            background-color: #f5f1e8;
        }

        .menu h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .menu h2 .subtitle {
            color: #CA560B;
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        .menu h2 .main {
            display: block;
            color: #2d1810;
            font-size: 2rem;
        }

        .menu h2 .menu-word {
            color: #32737B;
        }

        .menu-divider {
            width: 100%;
            height: 2px;
            background-color: #2d1810;
            margin-bottom: 2rem;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #ccc;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-name {
            font-weight: bold;
            color: #CA560B;
            font-size: 1rem;
            text-decoration: none;
        }

        .menu-item-name:hover {
            opacity: 0.7;
        }

        .menu-item-time {
            color: #2d1810;
            font-weight: bold;
        }

        /* ABOUT SECTION */
        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 4rem;
            background: linear-gradient(135deg, #2d1810 0%, #4a2a1a 100%);
            color: #F5F1E8;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: repeating-conic-gradient(
                from 0deg,
                rgba(244, 196, 48, 0.1) 0deg 45deg,
                transparent 45deg 90deg
            );
            opacity: 0.5;
            pointer-events: none;
        }

        .about-content {
            position: relative;
            z-index: 2;
        }

        .about-content h3 {
            font-size: 0.85rem;
            letter-spacing: 2px;
            color: #F3BC16;
            margin-bottom: 1rem;
        }

        .about-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
        }

        .stat {
            display: flex;
            flex-direction: column;
            border-left: 3px solid #F3BC16;
            padding-left: 1.5rem;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: #F3BC16;
        }

        .stat-label {
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #F5F1E8;
        }
        
.menu-item-time {
    font-size: 0.85rem;
}

.menu-item-name {
    font-size: 0.9rem;
}
        .about-image {
            position: relative;
            z-index: 2;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border: 4px solid #F3BC16;
            border-radius: 15px;
        }

        .image-caption {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: #F3BC16;
        }
        /* HIRE SECTION */
        .hire-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #CA560B 10%, #8B3F0F 100%);
            color: #F5F1E8;
            text-align: center;
        }

        .hire-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hire-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* FOOTER */
footer {
    background-color: #F3BC16;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
}
.footer-section {
    padding: 2rem 4rem;
}
.footer-section:nth-child(1) {
    justify-self: start;
}

.footer-section:nth-child(2) {
    justify-self: center;
}

.footer-section:nth-child(3) {
    justify-self: end;
}

.footer-section h3 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #2d1810;
}

.footer-section p {
    color: #2d1810;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

        .footer-section a {
    font-family: 'Inter', sans-serif;
    color: #2d1810;
    text-decoration: none;
    font-weight: normal;
    display: block;
    margin-bottom: 0.8rem;
        }

        .footer-section a:hover {
            opacity: 0.7;
        }
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 165px;
    height: auto;
    display: block;
}
.social-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: fit-content;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
        /* COPYRIGHT SECTION */
.copyright-section {
    grid-column: 1 / -1;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #2d1810;
    border-top: 2px solid #2d1810;
}
.copyright-section p {
    margin: 0;
}

.copyright-section p:last-child {
    text-align: right;
}
        /* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .album-art {
        max-width: 100%;
    }

    .music-section {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 2rem;
    }

.about-section {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .hire-content h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .genre-band {
        padding: 0.2rem 2rem;
        font-size: 0.9rem;
    }
    .now-playing-title {
        font-size: 2.4rem;
    }
    .vinyl-record-img {
    width: 240px;
    height: 240px;
}
    }

/* ADD THESE STYLES TO YOUR style.css */

/* ABOUT HERO SECTION */
.about-hero {
    background: linear-gradient(to bottom, #32737B, #95B6BA);
    padding: 4rem;
}

.about-hero-image {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.about-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #32737B;
    display: block;
}

.about-hero-title {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Bungee', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: #32737B;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
}

.donkey-word {
    color: #F5F1E8;
}

/* FIRST STRING SECTION */
.first-string-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem;
    align-items: stretch;
    background-color: #f5f1e8;
    background-image: 
        radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.first-string-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.first-string-text-box {
    background-color: #95B6BA;
    color: #F5F1E8;
    padding: 3rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first-string-title {
    font-family: 'Bungee', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #F5F1E8;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.first-string-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #F5F1E8;
    margin-bottom: 1rem;
}

.first-string-paragraph:last-child {
    margin-bottom: 0;
}

/* RETRO MEETS NOW SECTION */
.retro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: flex-start;
    background-color: #32737B;
}

.retro-text {
    display: flex;
    flex-direction: column;
}

.retro-title {
    font-family: 'Bungee', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #F5F1E8;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    line-height: 0.8;
    text-transform: uppercase;
}

.retro-word {
    color: #F3BC16;
    display: block;
}

.meets-word {
    color: #F5F1E8;
    display: block;
}

.retro-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #F5F1E8;
}

.retro-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* ESSENTIAL LISTENING SECTION */
.essential-listening {
    padding: 4rem;
    background-color: #95B6BA;
    text-align: center;
}

.listening-title {
    font-family: 'Bungee', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #F5F1E8;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.listening-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #F5F1E8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.album-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* FOLLOW THE JOURNEY SECTION */
.follow-journey {
    background-image: url('sky-photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    min-height: 600px;
    align-items: flex-start;
}

.follow-left {
    display: flex;
    align-items: center;
}

.follow-title {
    font-family: 'Bungee', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #F5F1E8;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.follow-right {
    display: flex;
    justify-content: center;
}

.instagram-box {
    background-color: white;
    border: 3px solid #32737B;
    border-radius: 15px;
    padding: 0.5rem;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
}

.instagram-media {
    width: 100%;
    margin: 0 !important;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1.5rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-image img {
        height: 200px;
    }

    .first-string-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .first-string-text-box {
        padding: 2rem;
    }

    .first-string-title {
        font-size: 1.8rem;
    }

    .retro-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .retro-title {
        font-size: 2rem;
    }

    .essential-listening {
        padding: 2rem 1.5rem;
    }

    .listening-title {
        font-size: 2rem;
    }

    .album-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .follow-journey {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
        min-height: auto;
    }

    .follow-title {
        font-size: 2.5rem;
    }

    .instagram-media {
        max-width: 100%;
            
    }
            footer {
        grid-template-columns: 1fr;
    }

    .footer-section,
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        padding: 2rem 1.5rem;
        justify-self: start;
    }

    .copyright-section {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding: 1rem 1.5rem;
    }

    .copyright-section p:last-child {
        text-align: left;
    }
}
