/* HEADER AREA */
.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 2rem;
}

.site-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.site-title {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

.tagline {
  font-weight: 500;
  margin-top: 0.5rem;
  color: #f1f1f1;
}

.duo-photo {
  margin: 2rem auto;
  max-width: 900px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.duo-photo img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.duo-photo img:hover {
  transform: scale(1.02);
}
/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 55px;
  width: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ff4081; /* or green if on Lara’s page */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-logo {
    width: 80px;
    height: 80px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #121212;
  color: #fff;
  line-height: 1.6;
}
.hero {
  text-align: center;
  margin-top: 60px; /* adjust as needed */
}

.hero-logo {
  width: 300px; /* adjust to fit */
  max-width: 80%;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

h1 {
  font-size: 3rem;
  margin-top: 10px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Bio Header */
.bio-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 10%;
}
.bio-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px;
}
.bio-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.bio-intro p {
  color: #ccc;
  margin-bottom: 15px;
}
.spotify-btn {
  background: #1db954;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.spotify-btn:hover {
  background: #17a84b;
}

/* Bio Details */
.bio-details {
  padding: 40px 10%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.bio-details h2 {
  color: #ff004f;
  margin-bottom: 20px;
}

/* Photo Gallery */
.photo-gallery {
  padding: 40px 10%;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.grid img:hover {
  transform: scale(1.05);
}

/* Videos */
.videos {
  padding: 40px 10%;
  text-align: center;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.video-grid img {
  width: 100%;
  border-radius: 10px;
}

/* Socials */
.socials {
  text-align: center;
  padding: 40px 0;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}
.social-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #ff004f;
}

/* Footer */
footer {
  background: #1e1e1e;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Themes */
.lara-theme .bio-intro h1, .lara-theme .bio-details h2 {
  color: #00ff88;
}
.lara-theme .spotify-btn {
  background: #00ff88;
}
.lara-theme .spotify-btn:hover {
  background: #00cc6e;
}
.rhea-theme .bio-intro h1, .rhea-theme .bio-details h2 {
  color: #ff4081;
}
.rhea-theme .spotify-btn {
  background: #ff4081;
}
.rhea-theme .spotify-btn:hover {
  background: #e63b73;
}

/* Responsive */
@media (max-width: 768px) {
  .bio-header {
    flex-direction: column;
  }
  .logo {
    position: static;
    margin-bottom: 15px;
  }
  .navbar {
    justify-content: center;
  }
}
/* SUBPAGE HEADERS */
.sub-header {
  text-align: center;
  padding: 2rem 1rem;
  color: white;
}
.lara-theme {
  background: linear-gradient(to right, #28a745, #111);
}
.rhea-theme {
  background: linear-gradient(to right, #ff4da6, #000);
}

/* BIO SECTION */
.bio-section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}
.bio-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.profile-img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.bio-text {
  flex: 1;
  min-width: 250px;
}
.spotify-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #1db954;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* PROJECTS */
.projects ul {
  list-style: none;
  line-height: 1.8;
  padding-left: 0;
}

/* PHOTO GRID */
.photo-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.photo-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* VIDEOS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.video-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.video-grid img:hover {
  transform: scale(1.05);
}

/* SOCIAL LINKS */
.social-links {
  text-align: center;
  margin-top: 2rem;
}
.social-icons a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #28a745;
  font-weight: 500;
}
.social-icons a:hover {
  text-decoration: underline;
}

/* BACK TO HOME */
.back-home {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #ccc;
  text-decoration: none;
}
.back-home:hover {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bio-intro {
    flex-direction: column;
    text-align: center;
  }
  .profile-img {
    width: 80%;
  }
}
/* THEMES */
.lara-theme {
  background: linear-gradient(to right, #28a745, #111);
}
.rhea-theme {
  background: linear-gradient(to right, #ff4da6, #000);
}

.social-icons a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

/* Different colors per theme */
.lara-body .social-icons a { color: #28a745; }
.rhea-body .social-icons a { color: #ff4da6; }

.lara-body .spotify-btn { background-color: #28a745; }
.rhea-body .spotify-btn { background-color: #ff4da6; }
/* HOMEPAGE BASE */
.home-body {
  background-color: #0b0b0b;
  color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.main-header {
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to right, #28a745, #ff4da6);
  color: #fff;
}

.intro-text {
  max-width: 700px;
  margin: 1rem auto;
  line-height: 1.6;
  color: #eee;
}

/* ARTIST CARDS */
.artist-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
}

.artist-card {
  background: #111;
  border-radius: 1.5rem;
  padding: 1.5rem;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.artist-card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.artist-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artist-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.explore-btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* BUTTON COLORS */
.lara-btn {
  background-color: #28a745;
}
.lara-btn:hover {
  background-color: #34c759;
  transform: translateY(-3px);
}

.rhea-btn {
  background-color: #ff4da6;
}
.rhea-btn:hover {
  background-color: #ff66b3;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .artist-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* ========== GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  height: 60px;
}

nav a {
  margin-left: 30px;
  font-weight: 600;
  color: #ddd;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ff69b4;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #ff69b4;
}

/* Duo Section */
.duo-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
}

.artist-card {
  text-align: center;
  width: 300px;
}

.artist-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.artist-card h2 {
  margin-top: 15px;
  font-size: 1.5rem;
}

.artist-card a:hover {
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
}
/* === VIDEO SHOWCASE SECTION === */
.video-showcase {
  background-color: #0a0a0a;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  color: #f5f5f5;
}

/* Responsive video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.video-grid video {
  width: 100%;
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease, opacity 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.video-grid video:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Individual position fixes for cropped faces */
.video-centered { object-position: center center; }
.video-top { object-position: center top; }
.video-bottom { object-position: center bottom; }
.video-left { object-position: left center; }
.video-right { object-position: right center; }

/* Gentle motion animation */
@keyframes slow-pan {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -2%); }
}

.video-grid video {
  animation: slow-pan 14s ease-in-out infinite alternate;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .video-showcase {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .video-grid video {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .video-grid video {
    height: 220px;
  }
}


.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.overlay-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}


/* ✨ Overlay Fade + Motion Animation */
@keyframes fadeInOverlay {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}


/* Optional: subtle parallax effect */
.video-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 10%, rgba(0,0,0,0.9) 90%);
  z-index: 1;
}

.latest-releases {
  background-color: #0b0b0b;
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  font-weight: 700;
}

.release-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.release-card {
  background: #151515;
  border-radius: 12px;
  padding: 1.5rem;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.release-cover {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 250px;
}

.spotify-btn {
  display: inline-block;
  margin-top: 1rem;
  color: #1db954;
  text-decoration: none;
  font-weight: 600;
  background: rgba(29, 185, 84, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.spotify-btn:hover {
  background: #1db954;
  color: #fff;
}


/* Katseye Highlight */
.katseye-highlight {
  text-align: center;
  background: linear-gradient(135deg, #111, #222);
  padding: 80px 20px;
}

.katseye-highlight h2 {
  color: #7fff7f;
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #7fff7f;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  background: #000;
}

/* Artist Pages */
.artist-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  gap: 40px;
}

.artist-hero img {
  width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.bio {
  max-width: 500px;
}

.bio h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.spotify-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #1DB954;
  color: white;
  border-radius: 30px;
  font-weight: 600;
}

.spotify-btn:hover {
  background-color: #17a84b;
}
.social-links {
  text-align: center;
  margin-top: 20px;
}

.social-links .icons a {
  color: #333;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-links .icons a:hover {
  color: #e91e63; /* or any accent color */
}

.social-links {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
}

.social-links h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.icons a {
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icons a:hover {
  color: #1db954; /* Spotify green or hot pink if on Rhea’s page */
  transform: scale(1.2);
}
.lara-theme .icons a:hover {
  color: #00ff7f;
}

.rhea-theme .icons a:hover {
  color: #ff1493;
}

/* Gallery */
.gallery {
  text-align: center;
  padding: 60px 20px;
}

.gallery h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.grid img {
  width: 250px;
  height: 350px;
  object-fit: cover;
  object-position: center top; /* <— focuses on the face */
  border-radius: 10px;
}


.grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff69b4;
}

/* THEME COLORS */
.rhea-theme .artist-hero img {
  box-shadow: 0 0 25px #ff69b4;
}

.rhea-theme nav a:hover {
  text-shadow: 0 0 10px #ff69b4;
}

.lara-theme .artist-hero img {
  box-shadow: 0 0 25px #39ff14;
}

.lara-theme nav a:hover {
  text-shadow: 0 0 10px #39ff14;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  .artist-hero {
    flex-direction: column;
  }
}
/* ----- Responsive Fixes ----- */

/* Make sure the page scales correctly on mobile */
meta[name="viewport"] {
  content: width=device-width, initial-scale=1.0;
}

/* General layout adjustments */
body {
  overflow-x: hidden;
}

/* Fix navbar on smaller screens */
nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px 0;
}

nav a {
  font-size: 1rem;
  padding: 8px;
}

/* Adjust section text and layout for mobile */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .profile-section img {
    width: 90%;
    height: auto;
    object-fit: cover;
  }

  .profile-section .text {
    width: 100%;
    padding: 10px;
  }

  /* Fix background gradient overflow */
  .gradient-bg {
    background-size: cover;
    background-attachment: scroll;
  }
}
