/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100vw;
  overflow-x: hidden;
}
body {
  background: #fff;
  color: #111;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
}

:root {
  --primary: #000;
  --secondary: #fff;
  --accent: #a8a8a8;
  --hero-overlay: rgba(0,0,0,0.5);
}

/* HERO OVERLAY STRUCTURE */
.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 3.2rem;
}
.hero-overlay-content {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
}
.hero-header-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  padding: 0 3vw;
  z-index: 3;
  pointer-events: none;
}
.hero-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px;
  pointer-events: auto;
}
.hero-social-links {
  display: flex;
  gap: 1.1rem;
  font-size: 1.3rem;
  pointer-events: auto;
}
.hero-social-links a {
  color: #fff;
  transition: color 0.2s;
}
.hero-social-links a:hover {
  color: var(--accent);
}

/* HERO NAVIGATION */
.hero-nav {
  margin-top: 4.5rem;
  margin-bottom: 2.5rem;
  z-index: 2;
}
.hero-nav ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
}
.hero-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  padding: 0.5rem 0.8rem;
  transition: color 0.2s;
}
.hero-nav a:hover {
  color: var(--accent);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
}
.hero-album-cover {
  width: 360px;
  max-width: 120vw;
  border-radius: 8px;
  margin-bottom: 2.2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.0rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
}
.button {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--secondary);
  border: 2px solid var(--primary);
  border-radius: 3px;
  padding: 0.7rem 2rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.button:hover {
  color: var(--secondary);
  background: var(--primary);
}
.streaming-links {
  margin-top: 0.5rem;
  font-size: 1rem;
}
.streaming-links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.2rem;
  transition: color 0.2s;
}
.streaming-links a:hover {
  color: var(--accent);
}

/* Remove old header/nav styles outside hero */
header {
  display: none;
}
.main-nav {
  display: none;
}

/* Section Styles */
section {
  padding: 3rem 1rem;
}
section:not(.hero) {
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
}

/* Videos Section */
.videos-wrapper {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
}
.video-item {
  flex: 1 1 45%;
  max-width: 45%;
  width: 100%;
  text-align: center;
  padding: 0 0 2rem 0;
  transition: transform 0.2s;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.video-item img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 0.8rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.video-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 300;
}
.video-item a {
  text-decoration: none;
}
.video-item a:hover {
  text-decoration: none;
}
.video-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Artist Info Section */
.berlimdopara-section .artist-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.berlimdopara-section .artist-info > div {
  flex: 1 1 300px;
  background: #111;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  margin: 0.5rem 0;
  text-align: center;
  color: #f5f5f5;
  font-family: 'Cormorant Garamond', serif;
}
.berlimdopara-section h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.berlimdopara-section h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.berlimdopara-section .artist-info p {
  font-weight: 500;
  font-size: 1.18rem;
}
.berlimdopara-section .artist-info > div h2,
.berlimdopara-section .artist-info > div h3 {
  color: #f5f5f5;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
}
.berlimdopara-section .artist-info > div p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 500;
  opacity: 0.90;
  text-align: center;
}

/* Contato Section */
.contato-section {
  text-align: center;
}
.contato-section a {
  color: var(--primary);
  text-decoration: underline;
}
.social-links {
  margin-top: 1.5rem;
}
.social-links a {
  color: var(--primary);
  font-size: 2rem;
  margin: 0 0.5rem;
  transition: color 0.2s;
  vertical-align: middle;
}
.social-links a:hover {
  color: var(--accent);
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--secondary);
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
}

/* Responsive adjustments for hero */
@media (max-width: 900px) {
  .hero-header-row {
    padding: 0 1vw;
    top: 1.2rem;
  }
  .hero-nav ul {
    gap: 1.2rem;
  }
  .hero-album-cover {
    width: 220px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .videos-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .video-item {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .hero-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-logo {
    font-size: 1rem;
  }
  .hero-social-links {
    font-size: 1rem;
    gap: 0.7rem;
    margin-top: 0.3rem;
  }
  .hero-content {
    margin-top: 1.2rem;
  }
  .hero-album-cover {
    width: 120px;
    margin-bottom: 1.2rem;
  }
}

/* Responsive Design */
@media (max-width: 700px) {
  .videos-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .berlimdopara-section .artist-info {
    flex-direction: column;
    gap: 1.5rem;
  }
  section {
    padding: 2rem 0.5rem;
  }
  .button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  .social-links a {
    font-size: 1.5rem;
  }
  .top-nav ul {
    gap: 1.2rem;
    padding: 0.5rem 0;
  }
  .top-nav a {
    font-size: 1rem;
  }
  .hero {
    margin-top: 2.5rem;
  }
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #000;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.top-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0.7rem 0;
}
.top-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.top-nav a:hover {
  color: var(--accent);
}

#bio p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: normal;
  text-align: center;
} 