/* Base Styles */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --accent: #FF4500;
    --dark-gray: #222222;
    --light-gray: #f5f5f5;
	--yellow: #FFFF00;
	--gold: #FFD700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
	width: auto;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--black);
}

.container {
	width: 1350px;
    margin: 0 auto;
    padding: 60px 0;
}

section {
    padding: 40px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

/* Header / Hero Section */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/FOTO01.jpeg');
    background-size: auto;
    background-position: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
}

nav {
	flex-direction: column;
    position: absolute;
    top: 0;
	height: auto;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
}

nav ul {
	table-layout: auto;
	position: center;
    justify-content: center;
    list-style: none;
	flex-direction: column;
	overflow-x: visible;
}

nav ul li {
	display: contents;
	flex-direction: column;
    margin: 0 15px;
	flex-wrap: wrap;
}

nav ul li a {
	display: run-in;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
	align-items: stretch;
	max-height: auto;
}

nav ul li a:hover {
    border-bottom: 2px solid var(--accent);
}

.hero-content {
	max-width: auto;
    padding: 0 20px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
	margin-top: 150px;
}

.hero-content h1 {
	
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.slogan {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
	opacity: 75%;
}

.cta-button:hover {
    background-color: var(--transparent);
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: flex-start;
		display: flex;
    }
}



/* About Section */
#sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

#sobre h2:after {
    content: '';
    display: flex;
    width: 150px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.sobre-content {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .sobre-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.band-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text p {
    margin-bottom: 15px;
}

/* Repertoire Section */
#repertorio {
    background-color: var(--dark-gray);
    color: var(--white);
}

#repertorio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#repertorio h2:after {
    content: '';
    display: flex;
	flex-direction: column;
    width: 150px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.intro {
    text-align: center;
    max-width: 1920px;
    margin: 0 auto 40px;
}

.repertorio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .repertorio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .repertorio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.repertorio-grid div {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.repertorio-grid div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.repertorio-grid h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Gallery Section */
#galeria h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

#galeria h2:after {
    content: '';
    display: block;
	width: 150px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Animation */

h1 {
  font-family: helvetica, arial, sans-serif;
  text-align: center;
}

body {
	
  width: auto px;
  margin: 0 auto;
}

.full-img {
  position: relative;
  display: block;
  width: 640px;
  height: 480px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 640px;
  height: 480px;
  background-color: rgba(0,0,0,0);
}

button {
  border: 0;
  background: rgba(150,150,150,0.6);
  text-shadow: 1px 1px 1px white;
  border: 1px solid #999;
  position: absolute;
  cursor: pointer;
  top: 2px;
  left: 2px;
}

.thumb-bar img {
  display: block;
  width: 25%;
  float: left;
  cursor: pointer;
}



/* Contact Section */

.fa {
  padding: 10px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Whatsapp */
.fa-whatsapp {
	background: var(--dark-gray);
	color: var(--white)
}

/* Facebook */
.fa-facebook {
  background: var(--dark-gray);
  color: var(--white);
}

/* Linkedin */
.fa-linkedin {
  background: var(--dark-gray);
  color: var(--white);
}

/* Instagram */
.fa-instagram {
  background: var(--dark-gray);
  color: var(--white);
}

#contato {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

#contato h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#contato h2:after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

#contato p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--gold);
}

.contact-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

footer .container {
    padding: 0;
}

.social-links {
	text-align: left-side;
    margin-top: 20px;
}

.social-links a {
	color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
}

.social-links a:hover {
    color: var(--accent);
}

/* Fix for Font Awesome */
.fab {
    font-family: "Font Awesome 5 Brands";
}

/* Fallback for Font Awesome */
.fab.fa-instagram:before { content: ""; }
.fab.fa-facebook:before { content: ""; }
.fab.fa-whatsapp:before { content: ""; }
.fab.fa-linkedin:before { content: ""; }

/* Responsive adjustments */
@media (max-width: 1920px) {
    .main-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        background-color: #1a1a1a;
        position: absolute;
        top: 72px; /* Altura do header + borda */
        left: 0;
        z-index: 999;
    }

    .main-nav.active {
        max-height: 300px; /* Altura suficiente para os links */
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .main-nav ul li {
        margin: 10px 20px;
        text-align: center;
		display: flex;
		flex-direction: auto;
    }

    .menu-toggle {
        display: block; /* Mostra o botão de menu */
        position: absolute;
        top: 15px;
        right: 20px;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .slogan {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        width: auto;
		height: 100%;
    }
	
	.nav {
        width: auto;
		height: 100%;
    }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 1s ease-out;
}
