/* General Site Styles */
:root {
    --primary-color: #00aeff; /* Vibrant Blue */
    --secondary-color: #ff4081; /* Vibrant Pink/Magenta */
    --accent-color: #ffc107; /* Bright Yellow */
    --background-dark: #121212;
    --background-light: #1e1e1e;
    --text-light: #e0e0e0;
    --text-dark: #333;
    --card-background: #2a2a2a;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif; /* Modern, rounded font */
    margin: 0;
    padding: 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    perspective: 1000px; /* For 3D effects on children */
}

header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    transform-style: preserve-3d;
}

header .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 2.2em;
    font-weight: 700; /* Bolder */
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

header .logo a:hover {
    transform: scale(1.05);
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin-top: 15px;
}

nav ul li {
    display: inline-block; /* Allows for transform */
    margin: 0 15px;
    transition: transform 0.3s ease;
}

nav ul li:hover {
    transform: translateY(-3px);
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.15em;
    padding: 8px 15px;
    border-radius: 25px; /* Pill shape for links */
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--accent-color);
    color: var(--background-dark);
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

main {
    padding: 30px;
    max-width: 1200px;
    margin: 40px auto;
    background: var(--background-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    border-radius: 15px;
}

section {
    padding: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #444; /* Darker separator */
    transform-style: preserve-3d; /* For 3D elements within sections */
}

section:last-child {
    border-bottom: none;
}

#hero {
    background: radial-gradient(circle, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.4);
    transform: rotateX(5deg) rotateY(-3deg); /* Slight 3D tilt */
    transition: transform 0.5s ease-out;
}

#hero:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
}

#hero-logo {
    max-width: 80%;
    height: auto;
    max-height: 200px; /* Adjust as needed */
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

#hero:hover #hero-logo {
    transform: scale(1.1) rotateZ(2deg);
}

#hero::before { 
    content: 	some_random_string;
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image: conic-gradient(from 90deg at 50% 50%, var(--accent-color) 0deg, transparent 60deg, transparent 120deg, var(--secondary-color) 180deg, transparent 240deg, transparent 300deg, var(--primary-color) 360deg);
    opacity: 0.15;
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#hero h1, #hero p, .cta-button {
    position: relative; 
    z-index: 1;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: textPopIn 1s ease-out forwards;
}

@keyframes textPopIn {
    0% { transform: translateY(30px) scale(0.8); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

#hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
    animation: textPopIn 1s ease-out 0.3s forwards;
    opacity: 0; /* Start hidden for animation */
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), #ffd54f); /* Yellow gradient */
    color: var(--background-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px; 
    font-size: 1.25em;
    font-weight: bold;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.25);
    animation: textPopIn 1s ease-out 0.6s forwards;
    opacity: 0; /* Start hidden for animation */
}

.cta-button:hover {
    background: linear-gradient(45deg, #ffd54f, var(--accent-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.35);
}

footer {
    text-align: center;
    padding: 30px;
    background: #1f1f1f;
    color: #aaa;
    margin-top: 50px;
    border-top: 3px solid var(--primary-color);
}

/* Artistas Page Styles - keeping existing good styles, adding more flair */
.artista {
    margin-bottom: 40px;
    padding: 25px;
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden; 
    position: relative; /* For pseudo-elements if needed */
}

.artista:hover {
    transform: translateY(-8px) scale(1.03) rotateZ(-1deg); /* More dynamic hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.artista-foto {
    width: 160px; /* Slightly larger */
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin-right: 30px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artista:hover .artista-foto {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 25px var(--secondary-color);
}

.artista h2 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.artista h3 {
    margin-top: 30px;
    color: var(--secondary-color); /* Using secondary for more color */
    font-size: 1.5em;
    border-bottom: 2px solid #555;
    padding-bottom: 8px;
}

.artista ul {
    list-style: none; 
    padding-left: 0;
}

.artista ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.artista ul li::before { 
    content: 	some_random_string;
    font-family: "Material Icons"; /* Example if using icon font */
    /* content: "\1F3B5"; Unicode music note */
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.artista ul li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

.artista ul li a {
    color: #d0d0d0; 
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.artista ul li a:hover {
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

/* Contatos Page Styles - more color and 3D */
#contato-info .info-geral,
#contato-info #max-vaz-contato-card-container {
    margin-bottom: 35px;
    padding: 30px;
    background-color: var(--card-background);
    border: 1px solid #444;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transform: perspective(800px) rotateY(2deg);
    transition: transform 0.4s ease;
}

#contato-info .info-geral:hover,
#contato-info #max-vaz-contato-card-container:hover {
    transform: perspective(800px) rotateY(0deg) scale(1.02);
}

#contato-info h1, #artistas-lista h1 {
    text-align: center;
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#contato-info h2 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 1.8em;
}

#contato-info a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}
#contato-info a:hover {
    color: #ffda6b; /* Lighter yellow */
}

/* Max Vaz Contact Card Specific Styles (enhanced) */
#max-vaz-booking-card {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0); /* Light gradient for card */
    color: var(--text-dark);
    border-radius: 25px; /* More rounded */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255,255,255,0.5);
    overflow: hidden;
    width: 360px; 
    max-width: 100%; 
    text-align: center;
    padding: 35px;
    border: none; /* Remove border, rely on shadow */
    margin: 25px auto; 
    position: relative; 
    transform: perspective(600px) rotateX(5deg) rotateY(-5deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#max-vaz-booking-card:hover {
    transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(1.05);
}

#max-vaz-booking-card .card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px auto;
    border: 6px solid var(--primary-color);
    animation: pulse 2s infinite; 
    box-shadow: 0 0 20px var(--primary-color);
}

#max-vaz-booking-card h1 {
    font-size: 2.1em;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
}

#max-vaz-booking-card .availability {
    font-size: 1.15em;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.7;
}

#max-vaz-booking-card .contact-info {
    font-size: 0.95em;
    color: #666;
    margin-top: 30px;
}

#max-vaz-booking-card .contact-info p {
    margin: 6px 0;
}

#max-vaz-booking-card .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

#max-vaz-booking-card .contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

#max-vaz-booking-card .regions span {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 15px;
    margin: 8px 5px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#max-vaz-booking-card .regions span:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#max-vaz-booking-card .music-notes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
}

#max-vaz-booking-card .music-notes span {
    position: absolute;
    font-size: 2em; 
    color: var(--primary-color);
    opacity: 0.15; /* More subtle */
    animation: floatNote 5s infinite ease-in-out, spinNote 10s linear infinite alternate;
}

@keyframes spinNote {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

#max-vaz-booking-card .music-notes .note1 { top: 5%; left: 10%; animation-delay: 0s; animation-duration: 6s, 12s; }
#max-vaz-booking-card .music-notes .note2 { top: 25%; left: 85%; animation-delay: 1.5s; font-size: 2.5em; animation-duration: 5s, 10s; }
#max-vaz-booking-card .music-notes .note3 { top: 65%; left: 5%; animation-delay: 3s; font-size: 1.8em; animation-duration: 7s, 14s; }
#max-vaz-booking-card .music-notes .note4 { top: 80%; left: 80%; animation-delay: 4.5s; animation-duration: 4s, 8s; }

/* Keyframes for animations (pulse and floatNote are from original card, enhanced) */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--rgb-primary-color, 0, 174, 255), 0.5), 0 0 20px var(--primary-color); }
    70% { transform: scale(1.05); box-shadow: 0 0 15px 20px rgba(var(--rgb-primary-color, 0, 174, 255), 0), 0 0 30px var(--primary-color); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--rgb-primary-color, 0, 174, 255), 0), 0 0 20px var(--primary-color); }
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-20px) translateX(5px) rotate(15deg); opacity: 0.3; }
}

/* Clearfix for floated elements like artista-foto */
.artista::after {
    content: "";
    clear: both;
    display: table;
}

/* Basic JS-driven animation placeholder */
.fade-in {
    opacity: 0;
    transform: translateY(30px) rotateX(-10deg);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Utility for 3D button press effect */
.button-3d {
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
.button-3d:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 2px 5px rgba(0,0,0,0.4) inset; /* Inset shadow for pressed effect */
}

