/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  --parallax-y: 0px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
  opacity: 1;
  pointer-events: auto;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-progress {
  width: 300px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff4ecd 0%, #a259ff 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 20px rgba(162, 89, 255, 0.3);
}

.loading-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.8;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) opacity(0.2);
  z-index: -999;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
}

body.fish::before {
  background-image: url("images/fish.png");
}

body.oyster::before {
  background-image: url("images/oyster.png");
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(235, 125, 160, 0.2);
  will-change: opacity;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo .logo {
  height: 40px;
  width: auto;
  filter: invert(1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #eb7da0;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #eb7da0;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(235, 125, 160, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.hero-subtitle-home {
  text-align: left;
}

.hero-subtitle-contact {
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.band-photo {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
  filter: contrast(1.1) saturate(1.2);
  cursor: pointer;
}

.band-photo:hover {
  transform: scale(1.02);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox-content img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: #eb7da0;
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  color: #ffffff;
  background-clip: padding-box;
  border: 2px solid transparent;
  background-origin: border-box;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(235, 125, 160, 0.3);
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  background-clip: padding-box;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #eb7da0;
}

.btn-secondary:hover {
  background: #eb7da0;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0a0a0a;
}

/* Latest Release Section */
.latest-release {
  padding: 80px 0;
  background: #111111;
}

.latest-release h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.release-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.release-info {
  text-align: center;
  max-width: 800px;
}

.release-info h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.release-date {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.release-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dddddd;
  margin-bottom: 2rem;
}

.release-description a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.release-description a:hover {
  color: #eb7da0;
}

.release-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Album Cover Styling */
.album-cover {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.album-cover-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 6%;
  box-shadow: 0 0 0 8px #1a1a1a, 0 0 0 12px #333333, 0 0 0 16px #1a1a1a,
    0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.album-cover-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 0 8px #1a1a1a, 0 0 0 12px #333333, 0 0 0 16px #1a1a1a,
    0 25px 50px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.album-cover-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 2px solid #333333;
  z-index: 1;
}

.album-cover-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #eb7da0;
  border-radius: 50%;
  z-index: 2;
}

/* Featured Quotes Section */
.featured-quotes {
  padding: 80px 0;
  background: #0a0a0a;
}

.featured-quotes h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quote-card {
  background: linear-gradient(145deg, #111111, #0a0a0a);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #eb7da0;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.quote-card:hover {
  transform: translateY(-5px);
}

.quote-card blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dddddd;
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
}

.quote-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: #eb7da0;
  position: absolute;
  top: -10px;
  left: -15px;
  opacity: 0.3;
}

.quote-card cite {
  color: #eb7da0;
  font-weight: 600;
  font-style: normal;
}

/* Footer */
footer {
  background: #111111;
  padding: 60px 0 20px;
  border-top: 1px solid #333333;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: invert(1);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: #cccccc;
  transition: fill 0.3s ease;
}

.social-links a:hover .social-icon {
  fill: #eb7da0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333333;
  color: #888888;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #eb7da0;
}

/* About Page */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #dddddd;
  margin-bottom: 3rem;
}

.band-members {
  padding: 80px 0;
  background: #111111;
}

.band-members h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.member-card {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #333333;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: #eb7da0;
}

.member-card h3 {
  color: #eb7da0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.member-card p {
  color: #cccccc;
  font-size: 1rem;
}

/* Photos */
.photos-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 20px 80px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

.photos-hero h1 {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

.photos-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.photo-item {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.photo-item img {
  width: 100%;
  height: 325px;
  border: none;
  object-fit: cover;
  object-position: center;
}

/* Videos Page */
.videos-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 20px 80px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

.videos-hero h1 {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.videos-grid iframe {
  width: 100%;
  height: 325px;
  border: none;
  border-radius: 20px;
  aspect-ratio: 16/9;
}

/* Contact Page */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(235, 125, 160, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact-hero h1 {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #eb7da0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content {
  padding: 80px 0;
  background: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-section {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #333333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.contact-section h3 {
  color: #eb7da0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-section p {
  color: #dddddd;
  margin-bottom: 0.5rem;
}

.contact-section a {
  color: #eb7da0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section a:hover {
  color: #a855f7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .band-photo {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    margin-bottom: 1rem;
  }

  .hero-image {
    margin-top: 1rem;
  }

  .release-info h3 {
    font-size: 2rem;
  }

  .album-cover-img {
    width: 250px;
    height: 250px;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .video-container {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 15px;
  }

  .videos-grid iframe {
    height: 250px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .videos-hero {
    padding: 100px 15px 60px;
  }

  .videos-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .album-cover-img {
    width: 200px;
    height: 200px;
  }

  .release-info h3 {
    font-size: 1.5rem;
  }

  .latest-release h2,
  .featured-quotes h2,
  .band-members h2,
  .videos-grid h2 {
    font-size: 2rem;
  }

  .photos-container {
    padding: 0;
    gap: 0.5rem;
  }

  .photo-item img {
    height: 180px;
  }

  .videos-grid {
    gap: 1rem;
    padding: 0 10px;
  }

  .videos-grid iframe {
    height: 200px;
  }

  .videos-hero {
    padding: 80px 10px 40px;
  }

  .videos-hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 800px) {
  .photos-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1rem;
  }

  .photos-hero .container {
    padding: 0;
  }

  .photo-item img {
    height: 250px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 15px;
  }

  .videos-grid iframe {
    height: 280px;
  }

  .videos-hero {
    padding: 100px 15px 60px;
  }

  .videos-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .lightbox-content {
    max-width: 100%;
    max-height: 100%;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
  }
}
