 :root {
            --primary: #1a1a1a;
            --secondary: #d90429;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        
        .logo {
            font-family: 'Permanent Marker', cursive;
            color: var(--secondary);
            font-size: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar {
            background-color: var(--primary);
            border-bottom: 2px solid var(--secondary);
        }
        
        .nav-link {
            color: var(--light);
            font-weight: 600;
            margin: 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: var(--secondary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/438bc6b0-7947-460e-bbf0-829ca46702eb.png') no-repeat center center;
            background-size: cover;
            height: 90vh;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }
        
        .btn-custom {
            background-color: var(--secondary);
            color: white;
            padding: 10px 25px;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-custom:hover {
            background-color: #b3001b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .section-title {
            font-family: 'Permanent Marker', cursive;
            color: var(--secondary);
            text-align: center;
            margin-bottom: 50px;
            font-size: 3rem;
            text-transform: uppercase;
        }
        
        .about-img {
            border: 5px solid var(--secondary);
            transform: rotate(-5deg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.5s;
        }
        
        .about-img:hover {
            transform: rotate(0deg);
        }
        
        .gallery-item {
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
        }
        
        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .artist-card {
            background-color: white;
            border-radius: 0;
            border-bottom: 3px solid var(--secondary);
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .artist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .artist-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }
        
        .artist-name {
            font-family: 'Permanent Marker', cursive;
            color: var(--primary);
            margin-top: 15px;
        }
        
        .artist-specialty {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .process-number {
            background-color: var(--secondary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px auto;
        }
        
        .contact-form {
            background-color: var(--primary);
            color: white;
            padding: 30px;
            border: 2px solid var(--secondary);
        }
        
        .form-control {
            border-radius: 0;
            border: none;
            margin-bottom: 20px;
            background-color: #333;
            color: white;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(217, 4, 41, 0.25);
            background-color: #444;
            color: white;
        }
        
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 30px 0;
        }
        
        .social-icon {
            color: var(--light);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            color: var(--secondary);
            transform: translateY(-5px);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }