/* ===== HERO ===== */
/* ===== HERO WITH BACKGROUND IMAGE ===== */
.hero-section {
    padding: 3rem 0 4rem;
    position: relative;
    background: #110d0a;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image behind everything */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/moody-sunset.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

/* Dark overlay to keep text readable */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 13, 10, 0.6);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hero image stays visible - no changes needed */
.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 3;
}

/* Text remains readable */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: #f0e6dc;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.hero-desc {
    font-size: 1.2rem;
    color: #e0d4c8;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c97a5e;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-section {
    padding: 3rem 0 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c97a5e;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: #f0e6dc;
}

.hero-desc {
    font-size: 1.2rem;
    color: #b0a090;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.7);
}

/* ===== FEATURED ===== */
.featured-section {
    padding: 4rem 0;
    background: #110d0a;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-artwork img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.featured-track {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #f0e6dc;
}

.featured-album {
    font-size: 1rem;
    color: #b0a090;
    margin-bottom: 1rem;
}

.featured-desc {
    color: #b0a090;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.featured-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ===== LISTEN ===== */
.listen-section {
    padding: 4rem 0;
}

.listen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.listen-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: #1a1410;
    border: 1px solid rgba(212, 197, 181, 0.08);
    border-radius: 10px;
    font-weight: 500;
    color: #d4c5b5;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.listen-card i {
    font-size: 1.3rem;
    color: #c97a5e;
}

.listen-card:hover {
    background: #261e18;
    border-color: #c97a5e;
    transform: translateY(-3px);
}

/* ===== WATCH ===== */
.watch-section {
    padding: 4rem 0;
    background: #110d0a;
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.watch-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.watch-card:hover {
    transform: translateY(-6px);
}

.watch-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.watch-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.watch-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    opacity: 0.85;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.watch-card:hover .watch-thumb i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.watch-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #d4c5b5;
}

/* ===== STORE ===== */
.store-section {
    padding: 4rem 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.store-card {
    background: #1a1410;
    border: 1px solid rgba(212, 197, 181, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.store-card img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem;
    border-radius: 8px;
}

.store-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #d4c5b5;
}

.store-card .price {
    font-weight: 600;
    color: #c97a5e;
    margin-bottom: 0.75rem;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 4rem 0;
    background: #110d0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.04);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 4rem 0;
    background: #110d0a;
    color: #d4c5b5;
    text-align: center;
    border-top: 1px solid rgba(212, 197, 181, 0.05);
}

.newsletter-section .section-title {
    color: #f0e6dc;
}

.newsletter-section p {
    max-width: 480px;
    margin: 0 auto 1.5rem;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.7rem 1.2rem;
    border: 1px solid rgba(212, 197, 181, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: #f0e6dc;
    outline: 2px solid transparent;
    transition: outline 0.25s ease, background 0.25s ease;
}

.newsletter-form input::placeholder {
    color: rgba(212, 197, 181, 0.3);
}

.newsletter-form input:focus {
    outline-color: #c97a5e;
    background: rgba(255, 255, 255, 0.08);
}