* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Molten Steel Background Canvas */
.molten-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #404040;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #404040;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #404040, #000000);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Header Slideshow */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none; /* Hide slideshow */
        }.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 0.3;
}

.slide-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
}

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            text-decoration: underline;
            text-decoration-color: #c0c0c0;
            text-underline-offset: 8px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #2d2d2d, #404040, #595959);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.4s ease;
            border: 2px solid rgba(192, 192, 192, 0.3);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #404040, #595959, #6d6d6d);
            border-color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

/* Services Section */
.services-section {
    padding: 100px 50px;
    background: rgba(26, 26, 26, 0.9);
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #c0c0c0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.1);
}

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffffff;
        }.service-card ul {
    list-style: none;
    color: #cccccc;
}

.service-card li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '⚬';
    position: absolute;
    left: 0;
    color: #c0c0c0;
    font-weight: bold;
}

/* Location Section */
.location-section {
    padding: 100px 50px;
    background: rgba(15, 15, 15, 0.9);
    position: relative;
    z-index: 2;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.location-details {
    background: rgba(45, 45, 45, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.location-details p {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #cccccc;
}

        .location-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .studio-photo {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            border: 1px solid rgba(192, 192, 192, 0.2);
        }
        
        .image-placeholder {
            background: rgba(45, 45, 45, 0.8);
            height: 300px;
            width: 100%;
            border-radius: 15px;
            border: 1px solid rgba(192, 192, 192, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #c0c0c0;
            font-size: 1.2rem;
            text-align: center;
            gap: 10px;
        }
        
        .image-placeholder small {
            font-size: 0.9rem;
            color: #999;
        }/* Gallery Section */
.gallery-section {
    padding: 100px 50px;
    background: rgba(26, 26, 26, 0.9);
    position: relative;
    z-index: 2;
}

.gallery-carousel {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(192, 192, 192, 0.3);
}

        .gallery-container {
            display: flex;
            transition: transform 1.5s ease;
        }        .gallery-item {
            min-width: 100%;
            height: 400px;
            background: rgba(45, 45, 45, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c0c0c0;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 45, 45, 0.9);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(64, 64, 64, 0.9);
    border-color: #c0c0c0;
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #c0c0c0;
}

/* Footer */
.footer {
    padding: 50px;
    background: rgba(15, 15, 15, 0.95);
    text-align: center;
    border-top: 1px solid rgba(192, 192, 192, 0.3);
}

.footer p {
    color: #cccccc;
    margin: 10px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .services-section,
    .location-section,
    .gallery-section {
        padding: 50px 20px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}