/* ============================================= */
/*              HOME.CSS – FULLY UPDATED         */
/* ============================================= */

/* Hero Section */
.hero {
    height: 100vh;
    background: url(images/Mavi\ Wallpaper.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.4rem; }
    .hero p  { font-size: 1.1rem; }
}

@media (max-width: 500px) {
    .hero { padding: 0 1rem; }
    .hero h1 { font-size: 2rem; }
}

/* Music Section – The Sound of Mzansi */
.music {
    padding: 6rem 8%;
    background-color: #000;
    text-align: center;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #F5A623;
    margin-bottom: 3.5rem;
    opacity: 0.9;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.music-card {
    background: #1a1a1a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.music-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(245,166,35,0.25);
}

.music-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.music-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin: 1rem 1.5rem 0.3rem;
}

.music-card .genre {
    display: block;
    color: #F5A623;
    font-size: 0.9rem;
    margin: 0 1.5rem 1.2rem;
}

/* Unified Spotify Button – used in BOTH Music Grid & Artist Feature */
.spotify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1DB954;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 1.5rem auto 0; /* centers button */
}

.spotify:hover {
    background: #1ed760;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(29,185,84,0.45);
}

.spotify i {
    font-size: 1.4em;
}

/* Visual Break Quote */
.visual-break {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    color: white;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.accent-line {
    display: block;
    width: 80px;
    height: 4px;
    background: #F5A623;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.quote {
    font-size: 2.2rem;
    font-style: italic;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

.author {
    color: #F5A623;
    font-size: 1.1rem;
}

/* Artist Feature Section (Mandy Logan etc.) */
.artist-feature {
    display: flex;
    min-height: 100vh;
    background-color: #f9f9f9;
}

.artist-left img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.artist-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5rem 4rem;
}

.artist-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.artist-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    max-width: 500px;
}

.artist-music h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.music-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.music-links .spotify,
.music-links .soundcloud,
.music-links .instagram {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.music-links .soundcloud   { background: #ff5500; }
.music-links .instagram     { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.music-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.artist-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.4s;
}

.artist-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Tips Section */
.tips-section {
    padding: 7rem 5%;
    background: white;
}

.tips-section .section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

.tips-section .section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .artist-feature { flex-direction: column; }
    .artist-left img { height: 60vh; }
    .artist-right { padding: 4rem 2rem; }
    .artist-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .music { padding: 4rem 5%; }
    .section-title { font-size: 2.2rem; }
    .music-grid { grid-template-columns: 1fr; }
    .artist-grid { grid-template-columns: 1fr; }
    .music-links { flex-direction: column; }
    .music-links a { justify-content: center; }
}