body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
        :root {
            --primary: #0d0d0d;
            --secondary: #1a1a1a;
            --accent: #d4af37;
            --accent-light: #e6c76a;
            --text: #f0f0f0;
            --light-text: #b0b0b0;
            --overlay: rgba(0, 0, 0, 0.75);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styling */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.95);
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
        }
        
        header.scrolled {
            padding: 12px 0;
            background-color: rgba(13, 13, 13, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--text);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Slideshow */
        .hero-slideshow {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--overlay) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 3;
        }
        
        .slide-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 4;
        }
        
        .hero-content {
            max-width: 700px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--light-text);
            max-width: 600px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--primary);
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .slide-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .slide-dot.active {
            background-color: var(--accent);
            transform: scale(1.3);
        }
        
        .slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .slide-arrow:hover {
            background-color: var(--accent);
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev {
            left: 30px;
        }
        
        .next {
            right: 30px;
        }
        
        /* Sections */
        section {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .section-header p {
            color: var(--light-text);
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 1.1rem;
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--accent-light);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--light-text);
            font-size: 1.1rem;
        }
        
        .signature {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--accent);
            margin-top: 20px;
            display: inline-block;
            transform: rotate(-5deg);
        }
        
        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
            text-align: center;
        }
        
        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .stat-box h4 {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .stat-box p {
            color: var(--light-text);
            font-size: 1.1rem;
        }
        
        /* Music Section */
        .music {
            background-color: var(--secondary);
        }
        
        .albums {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .album {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .album:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .album-img {
            height: 280px;
            overflow: hidden;
        }
        
        .album-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .album:hover .album-img img {
            transform: scale(1.15);
        }
        
        .album-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(212, 175, 55, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .album:hover .album-overlay {
            opacity: 1;
        }
        
        .play-btn {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .play-btn:hover {
            transform: scale(1.1);
            background: var(--accent);
            color: var(--primary);
        }
        
        .album-info {
            padding: 25px;
        }
        
        .album-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .album-info p {
            color: var(--light-text);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .album-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .album-links a {
            color: var(--accent);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .album-links a:hover {
            color: var(--accent-light);
            transform: translateY(-3px);
        }
        
        /* Shows Section */
        .shows-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .show {
            display: flex;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 25px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .show:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .show-date {
            background-color: var(--accent);
            color: var(--primary);
            padding: 25px;
            min-width: 120px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .show-date .day {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .show-date .month {
            font-size: 1.3rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .show-info {
            padding: 25px;
            flex: 1;
        }
        
        .show-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .show-info p {
            color: var(--light-text);
            margin-bottom: 15px;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        
        .show-info i {
            color: var(--accent);
            margin-right: 10px;
            width: 20px;
        }
        
        /* Video Section */
        .video-section {
            background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
            padding: 100px 0;
            text-align: center;
        }
        
        .video-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        .video-play-btn {
            width: 80px;
            height: 80px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .video-play-btn:hover {
            transform: scale(1.1);
            background: var(--primary);
            color: var(--accent);
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--secondary);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            color: var(--accent-light);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .contact-icon {
            color: var(--accent);
            font-size: 1.3rem;
            margin-right: 15px;
            min-width: 25px;
        }
        
        .contact-text p {
            color: var(--light-text);
            font-size: 1.1rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text);
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        .contact-form .form-group {
            margin-bottom: 25px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
        }
        
        .contact-form textarea {
            height: 160px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: #080808;
            padding: 70px 0 30px;
            text-align: center;
        }
        
        .footer-content {
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 20px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            color: var(--light-text);
            font-size: 0.95rem;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                width: 70%;
                height: 100vh;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 1000;
                transform: translateX(100%);
                transition: transform 0.4s ease;
            }
            
            nav ul.active {
                transform: translateX(0);
                display: flex;
            }
            
            nav ul li {
                margin: 20px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn {
                display: block;
                text-align: center;
                margin-bottom: 15px;
                width: 100%;
            }
            
            .btn-outline {
                margin-left: 0;
            }
            
            .show {
                flex-direction: column;
            }
            
            .show-date {
                flex-direction: row;
                justify-content: center;
                gap: 15px;
                padding: 15px;
            }
            
            .slide-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
    