/* Reset & Variables */
:root {
    --primary-color: #ff0000;
    --bg-color: #050505;
    --text-color: #ffffff;
    --nav-bg: rgba(0, 0, 0, 0.9);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: #000;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ddd;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s;
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    /* background-image: url('https://picsum.photos/seed/chibosshero/1920/1080'); High quality placeholder */
    background-image: url(./images/WhatsApp\ Image\ 2026-01-05\ at\ 4.36.53\ PM.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.artist-name {
    font-size: 5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b30000;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #ddd;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    padding: 40px 20px;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #222;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #fff;
}

.social-icons a:hover {
    color: var(--primary-color);
}

footer p {
    font-size: 0.8rem;
    color: #666;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .artist-name { font-size: 3rem; }
    .tagline { font-size: 1rem; }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
}