/* Cores personalizadas */
:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --black: #000000;
    --dark-gray: #1A1A1A;
}

/* Classes de cores */
.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    font-weight: bold;
}

.btn-gold:hover {
    background-color: var(--dark-gold);
    color: var(--black);
}

.bg-black-transparent {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Seção principal */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Blocos dos artistas */
.artist-row {
    padding: 20px;
    border-bottom: 1px solid var(--gold);
}

.artist-row:last-child {
    border-bottom: none;
}

/* Ícones sociais */
.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--dark-gold) !important;
    transform: scale(1.2);
}

/* Botões do carrossel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--gold);
    border-radius: 50%;
    padding: 15px;
}

/* Carrossel estilo portfólio */
.carousel {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-item {
    height: 900px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

/* Imagens da galeria */
.gallery img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.galeria-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid var(--gold);
}

.nav-link {
    position: relative;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Formulário */
.form-control,
.form-select {
    color: white !important;
    background-color: var(--dark-gray) !important;
    border: 1px solid var(--gold) !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Responsividade */
@media (max-width: 992px) {
    .carousel-item {
        height: 700px;
    }

    .gallery img {
        height: 500px;
    }

    .galeria-img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .artist-row {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .carousel-item {
        height: 420px;
    }

    .gallery img {
        height: 300px;
    }

    .galeria-img {
        height: 280px;
    }
}