:root {
    --primary-gold: #d4af37;
    --primary-gold-hover: #b5952f;
    --dark-bg: #0a0a12;
    --darker-bg: #050508;
    --card-bg: #15151e;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-blue: #1e3a8a;
    /* Deep luxury blue */
    --transition-speed: 0.3s;
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Rubik', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.center-text {
    text-align: center;
    display: block;
}

.bg-darker {
    background-color: var(--darker-bg);
}

.gold-text {
    color: var(--primary-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-speed) ease;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), #aa8a28);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.btn-gold-outline {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-gold-outline:hover {
    background-color: var(--primary-gold);
    color: #000;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header */
.main-header {
    background-color: rgba(10, 10, 18, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.7), rgba(10, 10, 18, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: var(--primary-gold);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 350px;
    height: 450px;
    background: linear-gradient(45deg, #222, #333);
    border: 2px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 10px;
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    transition: transform var(--transition-speed);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
    background-color: #1a1a25;
}

.service-card .icon-box {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.service-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Artists Section */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.artist-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.artist-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    display: block;
    /* Important for anchor tag */
}

.artist-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    /* For centering icon if used */
    align-items: center;
    justify-content: center;
    background-color: #222;
    border: 3px solid var(--primary-gold);
}

.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.artist-img-wrapper:hover img {
    transform: scale(1.05);
}

.artist-placeholder i {
    font-size: 3rem;
    color: #444;
}

.artist-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.artist-card p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
    /* Pushes bottom buttons down */
}

/* Why Us Section */
.why-us-content {
    background: linear-gradient(to right, #15151e, #0a0a12);
    padding: 50px;
    border-radius: 20px;
    border-right: 5px solid var(--primary-gold);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.gold-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #181822;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border-top: 2px solid var(--accent-blue);
}

.quote-icon {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ddd;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    text-align: left;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info .contact-details {
    margin: 30px 0;
}

.contact-details li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    color: var(--primary-gold);
    width: 25px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: #000;
    transform: rotate(360deg);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #0a0a12;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Footer */
.main-footer {
    background-color: #050508;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Response */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row-reverse;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background-color: #0a0a12;
        padding: 30px;
        transition: right 0.3s ease;
        border-right: 1px solid #222;
        display: flex;
        flex-direction: column;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .mobile-menu-toggle {
        display: block;
        color: #fff;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-container {
        flex-direction: column;
    }

    .image-placeholder {
        width: 100%;
        max-width: 350px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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