/* CSS Reset & Variables */
:root {
    --primary-color: #ff3b3b;
    /* Vibrant Red */
    --secondary-color: #1a1a1a;
    /* Dark Gray */
    --accent-color: #ffffff;
    /* White */
    --bg-dark: #0f0f0f;
    /* Very Dark Background */
    --text-gray: #b3b3b3;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--accent-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Ensure logo is white if it's black, or adjust based on PNG */
}

/* Adjust logo filter if original is already white or fits dark bg.
   Assuming current logo needs to stand out. */

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

.nav-links li a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.btn-highlight {
    color: var(--primary-color) !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 15, 0.9) 90%);
    z-index: -1;
}

.hero-title {
    font-size: 8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #d62e2e;
    transform: translateY(-2px);
}

.btn-youtube {
    background: #FF0000;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* About Section */
.about {
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.about-text strong {
    color: var(--accent-color);
}

.highlights-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlights-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-left: 3px solid var(--primary-color);
    font-family: var(--font-heading);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.about-image img:hover {
    filter: grayscale(0%);
}

/* Media Section */
.media-section {
    background: #151515;
}

.spotify-link {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.spotify-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1DB954;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.spotify-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
}

.spotify-icon {
    width: 30px;
    height: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-cta {
    text-align: center;
}

/* Gallery Section */
.gallery {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    /* Increased gap */
}

.social-icons a {
    width: 60px;
    /* Increased size */
    height: 60px;
    /* Increased size */
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.social-icons svg {
    width: 30px;
    /* Increased icon size */
    height: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1faa51;
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Developer Credit Style */
.developer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #777;
    position: absolute;
    right: 20px;
    left: auto;
    bottom: 20px;
}

.developer-credit span {
    font-size: 0.75rem;
}

.dev-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 700;
    transition: var(--transition);
}

.dev-link:hover {
    color: var(--primary-color);
}

.dev-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

/* Responsive adjustments for developer footer */
@media (max-width: 768px) {
    .developer-credit {
        position: static;
        margin-top: 20px;
        flex-direction: column;
    }
}

/* Animations */
.fade-up,
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in {
    transform: translateY(0);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
    }
}