/* --- VARIABLES --- */
:root {
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
    --rasta-red: #ff3b3b;
    --rasta-gold: #ffd700;
    --rasta-green: #00c853;
    --gradient-rasta: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.dark-bg { background-color: var(--bg-darker); }
.section-title {
    text-align: center; font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 2px;
    background: var(--gradient-rasta); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* --- ANIMATIONS (Scroll Reveal) --- */
.hidden {
    opacity: 0; transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform, opacity;
}
.show { opacity: 1; transform: translateY(0); }

/* --- BUTTONS --- */
.btn {
    display: inline-block; padding: 12px 30px; background: var(--gradient-rasta); color: #000;
    font-weight: bold; text-decoration: none; border-radius: 50px; border: none; cursor: pointer; transition: transform 0.3s;
}
.btn:hover { transform: scale(1.05); }
.btn-outline {
    background: transparent; border: 2px solid var(--rasta-gold); color: var(--rasta-gold); margin-left: 10px;
}
.btn-outline:hover { background: var(--rasta-gold); color: #000; }

/* --- HEADER & NAV --- */
header {
    padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(18, 18, 18, 0.95); border-bottom: 1px solid #333;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

/* LOGO */
.logo-container {
    background: rgba(255, 255, 255, 0.1); border-radius: 50%; padding: 5px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 5px var(--rasta-gold); backdrop-filter: blur(5px);
}
.logo-img { height: 40px; width: auto; display: block; }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--rasta-gold); }

/* Hamburger Style */
.mobile-menu-icon { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: white; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0 20px; justify-content: center; 
}
.hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: -1; }

.hero-content { z-index: 2; max-width: 800px; text-align: center; padding: 20px; }
.hero h1 { font-size: 4rem; margin-bottom: 5px; text-transform: uppercase; line-height: 1.1; }
.subtitle { font-size: 1.5rem; color: var(--rasta-gold); margin-bottom: 15px; font-weight: bold; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }

/* --- BIO CARDS --- */
.bio-grid { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 0 auto; }
.bio-card {
    background: var(--bg-card); padding: 40px; border-radius: 15px; position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid transparent;
}
.bio-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.bio-card p { font-size: 1.15rem; color: #e0e0e0; line-height: 1.8; }
.card-red { border-left-color: var(--rasta-red); background: linear-gradient(145deg, #1e1e1e, #251a1a); }
.card-gold { border-left-color: var(--rasta-gold); background: linear-gradient(145deg, #1e1e1e, #25221a); }
.card-green { border-left-color: var(--rasta-green); background: linear-gradient(145deg, #1e1e1e, #1a251a); }
.bio-quote { margin-top: 50px; font-style: italic; font-size: 1.5rem; color: var(--rasta-gold); display: inline-block; }

/* --- SONGS GRID (IMAGES & LINKS) --- */
.songs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.song-card {
    background: var(--bg-card); border-radius: 10px; overflow: hidden;
    text-decoration: none; color: inherit; transition: transform 0.3s, box-shadow 0.3s; display: block;
}
.song-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }

/* New Style for Real Images */
.song-img {
    width: 100%; height: 180px; object-fit: cover; /* Ensures image fills box without stretching */
    display: block; border-bottom: 3px solid var(--rasta-green);
}
.song-info { padding: 20px; }
.listen-link { font-size: 0.9rem; color: var(--rasta-gold); display: flex; align-items: center; gap: 5px; }

/* --- ALBUMS GRID (IMAGES & LINKS) --- */
.albums-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.album-card {
    background: var(--bg-card); border-radius: 15px; overflow: hidden; display: flex;
    align-items: center; border: 1px solid #333; text-decoration: none; color: inherit;
    transition: transform 0.3s;
}
.album-card:hover { transform: translateY(-5px); border-color: var(--rasta-gold); }

/* New Style for Real Album Art */
.album-art {
    width: 150px; height: 150px; object-fit: cover; flex-shrink: 0;
}
.album-info { padding: 20px; }
.album-info h3 { font-size: 1.5rem; margin-bottom: 5px; }
.album-info p { color: var(--rasta-gold); }

/* --- CONTACT --- */
.contact-center { text-align: center; max-width: 800px; margin: 0 auto; }
.contact-intro { font-size: 1.2rem; margin-bottom: 40px; color: #ccc; }
.social-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.icon-box {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--bg-card); padding: 25px; border-radius: 15px; text-decoration: none;
    color: var(--text-muted); transition: all 0.3s; border: 1px solid #333; width: 120px;
}
.icon-box:hover { background: #2a2a2a; color: var(--rasta-gold); border-color: var(--rasta-gold); transform: translateY(-5px); }
.icon-box svg { width: 35px; height: 35px; margin-bottom: 10px; }
.direct-contact { font-size: 1.5rem; color: var(--text-main); margin-top: 20px; }
.direct-contact strong { color: var(--rasta-gold); }
footer { text-align: center; padding: 40px; color: #666; font-size: 0.8rem; border-top: 1px solid #222; }

/* --- DESKTOP SPECIFIC STYLES (PC) --- */
@media (min-width: 900px) {
    .hero { justify-content: flex-start; }
    .hero-content { text-align: left; margin-left: 5%; align-items: flex-start; }
    .hero-btns { display: flex; gap: 15px; }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .songs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-icon { display: block; }
    .mobile-menu-icon.active .bar:nth-child(2) { opacity: 0; }
    .mobile-menu-icon.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-icon.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links {
        position: fixed; left: -100%; top: 70px; gap: 0; flex-direction: column;
        background-color: var(--bg-card); width: 100%; text-align: center; transition: 0.3s;
        border-bottom: 2px solid var(--rasta-gold); box-shadow: 0 10px 10px rgba(0,0,0,0.5);
    }
    .nav-links.active { left: 0; }
    .nav-links li { padding: 20px 0; border-bottom: 1px solid #333; }
    
    .hero h1 { font-size: 2.8rem; }
    .albums-grid { grid-template-columns: 1fr; }
    .album-card { flex-direction: column; text-align: center; }
    .album-art { width: 100%; height: 200px; }
    .bio-card { padding: 25px; }
}

@media (max-width: 600px) {
    .songs-grid { grid-template-columns: 1fr; }
    .social-icons { gap: 15px; }
    .icon-box { width: 90px; padding: 15px; font-size: 0.8rem; }
}