@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&family=Space+Grotesk:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sage-green: #8a9a5b;
  --olive-green: #6b7a47;
  --warm-beige: #d4c5a9;
  --muted-beige: #c7b79b;
  --cream: #f4f0e8;
  --warm-gray: #a8a394;
  --cool-gray: #7a7b6b;
  --charcoal: #3d3d3d;
  --soft-white: #faf8f5;
  --dusty-green: #9dad7f;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.4;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 154, 91, 0.2);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo.hero-title-nav {
  position: absolute;
  left: 2rem;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nav.scrolled .logo:not(.hero-title-nav) {
  opacity: 1;
  transform: translateY(0);
}

.nav.scrolled .logo.hero-title-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--cool-gray);
  font-weight: 300;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--sage-green);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("../assets/images/hero-shot.webp") center/cover no-repeat;
  background-color: var(--warm-beige);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 2rem;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/hero-shot.webp") center/cover no-repeat;
  background-color: var(--warm-beige);
  transition: filter 0.3s ease;
  z-index: 1;
}

.hero.scrolled::after {
  filter: blur(3px);
}

.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="grid" x="0" y="0" width="15" height="15" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="15" height="15" fill="none" stroke="rgba(107,122,71,0.05)" stroke-width="0.5"/><circle cx="7.5" cy="7.5" r="1" fill="rgba(139,154,91,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  background-size: 80px 80px;
  filter: blur(1px);
  animation: drift 12s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-15px, -10px) rotate(0.5deg);
  }
  66% {
    transform: translate(10px, -5px) rotate(-0.5deg);
  }
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -2px;
  margin-left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-title.scrolled {
  opacity: 0;
  transform: translateY(-20px);
}

/* Header title that appears when scrolling */
.nav .logo.hero-title-nav {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav.scrolled .logo.hero-title-nav {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Images */
.floating-image {
  position: absolute;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 154, 91, 0.2);
  overflow: hidden;
  z-index: 2;
}

.floating-image-1 {
  width: 280px;
  height: 380px;
  top: 15%;
  right: 20%;
  background: url("../assets/images/floating-photo-1.webp") center/cover
    no-repeat;
  background-color: var(--sage-green);
  animation: float1 8s ease-in-out infinite;
}

.floating-image-2 {
  width: 200px;
  height: 280px;
  bottom: 20%;
  right: 40%;
  background: url("../assets/images/floating-photo-2.webp") center/cover
    no-repeat;
  background-color: var(--olive-green);
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(15px) rotate(-1deg);
  }
}

.floating-image::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"><rect x="10" y="10" width="80" height="80" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.3"/><path d="M30,50 L70,50 M50,30 L50,70" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  background-size: 60px 60px;
}

/* Releases Section */
.releases {
  padding: 120px 0;
  background: var(--cream);
  min-height: 100vh;
}

.releases-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: -1px;
}

.releases-list {
  list-style: none;
  margin-bottom: 6rem;
}

.release-item {
  border-bottom: 1px solid rgba(139, 154, 91, 0.2);
  padding: 2rem 0;
  transition: all 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  transform: translateX(0);
}

.release-item:hover {
  transform: translateX(2rem);
  border-bottom-color: var(--sage-green);
}

.release-item:hover .release-title {
  color: var(--sage-green);
}

.release-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.release-meta {
  color: var(--cool-gray);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.release-year {
  opacity: 0.6;
}

/* Email Button */
.email-section {
  text-align: center;
  padding: 4rem 0;
}

.email-btn {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: linear-gradient(45deg, var(--sage-green), var(--dusty-green));
  color: var(--soft-white);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: lowercase;
}

.email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 154, 91, 0.3);
  background: linear-gradient(45deg, var(--olive-green), var(--sage-green));
}

/* Bio Section */
.bio {
  padding: 120px 0;
  background: var(--soft-white);
  min-height: 60vh;
}

.bio-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--charcoal);
}

.bio-text p {
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--sage-green);
  color: var(--sage-green);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--sage-green);
  color: var(--soft-white);
}

/* Events Section */
.events {
  padding: 120px 0;
  background: var(--cream);
  min-height: 60vh;
}

.events-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.events-list {
  list-style: none;
}

.event-item {
  display: flex;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(139, 154, 91, 0.2);
}

.event-date {
  min-width: 120px;
  color: var(--sage-green);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
}

.event-details {
  flex: 1;
}

.event-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.event-venue {
  color: var(--cool-gray);
  font-size: 1rem;
}

/* Newsletter Section */
.newsletter {
  padding: 120px 0;
  background: var(--soft-white);
  min-height: 60vh;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.email-input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(139, 154, 91, 0.2);
  background: var(--soft-white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
}

.email-input:focus {
  outline: none;
  border-color: var(--sage-green);
}

.subscribe-btn {
  padding: 1rem 2rem;
  background: var(--sage-green);
  color: var(--soft-white);
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: var(--olive-green);
}

/* Social Section */
.social {
  padding: 120px 0;
  background: var(--cream);
  min-height: 60vh;
}

.social-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--cool-gray);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--sage-green);
}

/* Streaming Platforms */
.streaming-platforms {
  text-align: center;
  margin: 4rem 0;
}

.section-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.platform-link {
  color: var(--cool-gray);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.platform-link:hover {
  color: var(--sage-green);
}

/* Footer */
.footer {
  background: var(--warm-beige);
  padding: 3rem 0;
  border-top: 1px solid rgba(139, 154, 91, 0.2);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.copyright {
  color: var(--cool-gray);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .floating-image-1 {
    right: 10%;
    width: 240px;
    height: 320px;
  }

  .floating-image-2 {
    right: 30%;
    width: 180px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .release-title {
    font-size: 1.4rem;
  }

  .release-item:hover {
    transform: translateX(1rem);
  }

  .email-btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
  }

  .floating-image-1 {
    width: 160px;
    height: 220px;
    right: 5%;
    top: 20%;
  }

  .floating-image-2 {
    width: 120px;
    height: 160px;
    right: 25%;
    bottom: 25%;
  }

  .event-item {
    flex-direction: column;
  }

  .event-date {
    margin-bottom: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-links {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .releases-content {
    padding: 0 1rem;
  }

  .floating-image-1,
  .floating-image-2 {
    display: none;
  }

  .platform-links {
    gap: 1rem;
  }

  .social-links {
    gap: 1rem;
  }
}
