/* Custom Properties / Tokens */
:root {
    --bg-color: #050505;
    --text-color: #f4ebd8;
    /* Cream / off-white */
    --accent-color: #aa917a;
    /* Muted vintage gold/sepia */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.hero-title,
.section-title,
.artist-name {
    font-family: var(--font-heading);
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 1px;
    background: var(--accent-color);
    bottom: -10px;
    left: 20%;
    opacity: 0.5;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem;
    z-index: 100;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 6px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('Materiais%20site/Imagens/Fundo%20Landing%20page.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(5, 5, 5, 1) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    animation: fadeIn 2s ease-out;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--accent-color);
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 400;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--bg-color), #0a0a0a);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Artists Section */
.artists {
    background-color: #0a0a0a;
}

.artists-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.artist-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.artist-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.flex-reverse {
    flex-direction: row-reverse;
}

.artist-info {
    flex: 1;
}

.artist-media {
    flex: 1.2;
    width: 100%;
}

.artist-image-container {
    width: 100%;
    max-width: 400px;
    /* Aumentado para acompanhar o text block e ficar mais imponente */
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.artist-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
    object-fit: contain;
    /* Contain impede o corte da imagem original e a exibe inteira */
    max-height: 500px;
}

/* Dramatic B&W / Sepia Filter */
.dramatic-filter {
    filter: grayscale(100%) contrast(120%) brightness(80%) sepia(20%) hue-rotate(5deg);
}

.artist-card:hover .dramatic-filter {
    filter: grayscale(40%) contrast(110%) brightness(90%) sepia(10%);
    transform: scale(1.03);
}

.artist-name {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.artist-bio {
    font-size: 1rem;
    color: #ccc;
    text-align: justify;
}

/* Responsive Video Embed */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(244, 235, 216, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 6rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(244, 235, 216, 0.05);
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 1px solid rgba(170, 145, 122, 0.3);
    border-radius: 2px;
    text-transform: uppercase;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .artist-card {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .flex-reverse {
        flex-direction: column;
    }

    .artist-image-container {
        margin: 0 auto 2rem;
    }

    .artist-bio {
        text-align: center;
        /* or left if preferred, but center is better on mobile */
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .logo-placeholder {
        margin-bottom: 1rem;
    }

    .footer-logos {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}