/* Custom Font - Rabiohead */
@font-face {
    font-family: 'Rabiohead';
    src: url('rabiohead.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Root Variables - Warm, Modern Color Palette */
:root {
    --primary-color: #E8744F;
    --secondary-color: #D4A574;
    --accent-color: #8B4513;
    --dark-bg: #1A1A1A;
    --darker-bg: #0D0D0D;
    --light-text: #FFFFFF;
    --muted-text: #B8B8B8;
    --warm-overlay: rgba(232, 116, 79, 0.15);
    --card-bg: #242424;
    --card-hover: #2C2C2C;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--light-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

.menu-content {
    display: flex;
    flex-direction: column;
    padding: 120px 50px;
    gap: 2rem;
}

.menu-item {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.menu-item:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.menu-item:hover::before {
    width: 40px;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(232, 116, 79, 0.15) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Rabiohead', cursive, sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: normal;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover {
    background: #d66541;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 116, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-text);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 28px;
        opacity: 0.3;
    }
}

/* Section Base Styles */
.section {
    padding: 100px 20px;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Rabiohead', cursive, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: normal;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--muted-text);
    font-weight: 300;
}

/* Concerts Section */
.concerts-section {
    background: var(--dark-bg);
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.concert-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.concert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 116, 79, 0.2);
    border-color: var(--primary-color);
}

.concert-card.featured {
    grid-column: span 2;
}

.concert-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.concert-card:hover .concert-image img {
    transform: scale(1.1);
}

.concert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.concert-content {
    padding: 2rem;
}

.concert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding: 2rem;
    text-align: center;
}

.concert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.concert-card p {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Albums Section */
.albums-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

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

.album-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.15);
    border-color: var(--secondary-color);
}

.album-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.album-card h3 {
    font-family: 'Rabiohead', cursive, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--light-text);
    letter-spacing: 1px;
}

.album-card p {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
    line-height: 2;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--muted-text);
}

.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links h4, .footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social p {
    color: var(--muted-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .concert-card.featured {
        grid-column: span 1;
    }

    .section {
        padding: 60px 20px;
    }

    .menu-content {
        padding: 100px 30px;
    }

    .menu-item {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .concerts-grid,
    .albums-grid {
        grid-template-columns: 1fr;
    }
}

