@charset "utf-8";
/* CSS Document */

        :root {
            --primary-orange: #FF8C00;
            --gold: #FFD700;
            --dark-orange: #CC7000;
            --light-orange: #FFA500;
            --text-dark: #2C1810;
            --text-light: #F5F5DC;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--gold) !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: white;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23FFD700" opacity="0.05" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--text-dark);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FF8C00" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            animation: sparkle 20s linear infinite;
        }

        @keyframes sparkle {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(255,140,0,0.2);
            color: var(--primary-orange);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            color: var(--dark-orange);
        }

        .btn-custom {
            background: linear-gradient(135deg, var(--gold), var(--light-orange));
            color: var(--text-dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,215,0,0.4);
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,215,0,0.6);
            background: linear-gradient(135deg, var(--light-orange), var(--gold));
        }

        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: linear-gradient(to bottom, #ffffff, #FFF8DC);
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(255,140,0,0.2);
            border: 3px solid var(--gold);
        }

        .section-title {
            color: var(--primary-orange);
            font-size: 3rem;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--gold));
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* Music Section */
        .music-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            color: white;
        }

        .music-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin: 1rem 0;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
        }

        .music-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,215,0,0.3);
            background: rgba(255,255,255,0.2);
        }

        .music-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Themes Section */
        .themes-section {
            padding: 6rem 0;
            background: #FFF8DC;
        }

        .theme-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 1rem 0;
            border-left: 5px solid var(--primary-orange);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .theme-item:hover {
            transform: translateX(10px);
            border-left-color: var(--gold);
        }

        .theme-icon {
            color: var(--primary-orange);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 0;
            background: white;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-orange), var(--gold));
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255,140,0,0.4);
        }

        .gallery-item i {
            font-size: 5rem;
            color: white;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover i {
            transform: scale(1.2);
            opacity: 0.5;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 2rem 1rem 1rem;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h5 {
            color: white;
            margin: 0;
            font-weight: 600;
            text-align: center;
        }

        /* Modal Glitch */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            animation: glitchFadeIn 0.3s ease-out;
        }

        .gallery-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes glitchFadeIn {
            0% {
                opacity: 0;
                transform: scale(1.1);
            }
            20% {
                transform: translateX(-5px);
            }
            40% {
                transform: translateX(5px);
            }
            60% {
                transform: translateX(-3px);
            }
            80% {
                transform: translateX(3px);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .modal-content-wrapper {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            animation: glitchSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes glitchSlideIn {
            0% {
                opacity: 0;
                transform: translateY(-50px) scale(0.8);
            }
            50% {
                transform: translateY(10px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-image-container {
            position: relative;
            background: linear-gradient(135deg, var(--primary-orange), var(--gold));
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 50px rgba(255, 140, 0, 0.5);
            border: 3px solid var(--gold);
        }

        .modal-image-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--gold), var(--primary-orange), var(--gold));
            border-radius: 20px;
            z-index: -1;
            animation: glitchBorder 2s linear infinite;
        }

        @keyframes glitchBorder {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .modal-image {
            display: flex;
            align-items: center;
            justify-content: center;
            max-height: 70vh;
            max-width: 70vw;
            background: white;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .modal-image img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            animation: glitchImage 1s ease-in-out infinite;
        }

        @keyframes glitchImage {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                filter: hue-rotate(0deg);
            }
            10% {
                transform: translate(-1px, 1px) scale(1.01);
            }
            20% {
                transform: translate(1px, -1px) scale(0.99);
            }
            30% {
                transform: translate(-1px, -1px) scale(1.005);
            }
            40% {
                transform: translate(1px, 1px) scale(0.995);
            }
            50% {
                filter: hue-rotate(5deg);
            }
        }

        .modal-title {
            text-align: center;
            margin-top: 1.5rem;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: glitchText 3s ease-in-out infinite;
        }

        @keyframes glitchText {
            0%, 90%, 100% {
                transform: translate(0);
                text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            }
            92% {
                transform: translate(-2px, 1px);
                text-shadow: -2px 2px 4px rgba(255,140,0,0.8), 2px -2px 4px rgba(255,215,0,0.8);
            }
            94% {
                transform: translate(2px, -1px);
                text-shadow: 2px -2px 4px rgba(255,140,0,0.8), -2px 2px 4px rgba(255,215,0,0.8);
            }
            96% {
                transform: translate(-1px, -1px);
            }
        }

        .modal-close {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            border: 3px solid var(--primary-orange);
            border-radius: 50%;
            color: var(--text-dark);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,215,0,0.5);
            z-index: 10;
        }

        .modal-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: var(--primary-orange);
            color: white;
            box-shadow: 0 6px 20px rgba(255,140,0,0.7);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.9);
            border: 2px solid var(--primary-orange);
            border-radius: 50%;
            color: var(--text-dark);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-nav:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-50%) scale(1.2);
        }

        .modal-nav.prev {
            left: -70px;
        }

        .modal-nav.next {
            right: -70px;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
            color: white;
        }

        .contact-form-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid var(--gold);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--gold);
            font-size: 1.1rem;
        }

        .form-group label i {
            margin-right: 0.5rem;
            color: var(--gold);
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-dark);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: #999;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        select.form-control {
            cursor: pointer;
        }

        .form-message {
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        .form-message.success {
            background: rgba(76, 175, 80, 0.9);
            color: white;
            display: block;
            animation: slideInUp 0.5s ease;
        }

        .form-message.error {
            background: rgba(244, 67, 54, 0.9);
            color: white;
            display: block;
            animation: slideInUp 0.5s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .social-links a {
            display: inline-block;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            border-radius: 50%;
            background: var(--gold);
            color: var(--text-dark);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 20px rgba(255,215,0,0.5);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--gold);
            padding: 2rem 0;
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero .subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .modal-nav.prev {
                left: -50px;
            }
            
            .modal-nav.next {
                right: -50px;
            }

            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--gold));
            color: white;
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
            background: linear-gradient(135deg, var(--gold), var(--primary-orange));
        }

        .back-to-top:hover i {
            animation: bounceUp 0.6s ease-in-out infinite;
        }

        @keyframes bounceUp {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .back-to-top i {
            transition: transform 0.3s ease;
        }
