:root {
  --accent: #7bb3ff;
  --header-bg: #96836e;
  --footer-bg: #e0e0e0;
  --text-color: #222;
  --font: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-color);
  background: #fff;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.site-header {
  width: 100%;
  background: var(--header-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 1000;
  gap: 2rem;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  text-align: center;
  color: var(--text-color);
  font-weight: 700;
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-icons a,
.social-icons a:link,
.social-icons a:visited,
.social-icons a:active {
  color: #222 !important;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.social-icons a:hover {
  color: #7bb3ff !important;
  transform: translateY(-2px);
}

/* Scroll Container with Snap */
.scroll-container {
  flex: 1;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* Snap Sections */
.snap-section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* HOME Section - Contains both hero and promo blocks */
.home-section {
  padding: 0;
}

/* Hero Block (top part of home) */
.hero-block {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.25);
}

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

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Promo Block (bottom part of home) */
.promo-block {
  min-height: 40vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.promo-content {
  text-align: center;
  max-width: 600px;
}

.promo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.promo-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* MUSIC Section */
.music-section {
  background: #3d3c3b;
  padding: 6rem 2rem 2rem 2rem;
  overflow-y: auto;
  align-items: flex-start;
}

.music-section .section-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.music-section h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.release {
  background: #474745;
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.release:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.release img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.release p {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* BEATS Section */
.beats-section {
  background: #96836e;
  padding: 0;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
}

.beats-iframe-container {
  width: 100%;
  height: 100vh;
  background: #96836e;
}

.beats-iframe-container iframe {
  border: none;
  display: block;
}

/* Pricing Section */
.pricing-section {
  background:  #96836e;
  padding: 4rem 2rem;
  width: 100%;
}

.pricing-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #222;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-card.exclusive {
  background: linear-gradient(135deg, #7bb3ff 0%, #5a9ff5 100%);
  color: white;
}

.pricing-card.exclusive .price,
.pricing-card.exclusive .lease-type,
.pricing-card.exclusive .features {
  color: white;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}

.lease-type {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px solid #eee;
}

.features li:last-child {
  border-bottom: none;
}

.pricing-card.exclusive .features li {
  color: white;
  border-bottom-color: rgba(255,255,255,0.2);
}

/* Responsive Pricing */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-section h2 {
    font-size: 2rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
}


/* CONTACT Section */
.contact-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.contact-content {
  text-align: center;
  max-width: 600px;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.contact-info {
  margin-bottom: 3rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  color: var(--accent);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.email-link i {
  font-size: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* Footer Styles */
.site-footer {
  background: var(--footer-bg);
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Responsive Design */
@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
  }
  
  .logo {
    flex: 1 0 100%;
    text-align: center;
  }
  
  .nav {
    order: 2;
    justify-content: center;
  }
  
  .social-icons {
    order: 3;
  }

  .music-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .promo-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .nav {
    gap: 1rem;
  }
  
  .nav a {
    font-size: 0.9rem;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icons a {
    font-size: 1rem;
  }

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

  .hero-content h2 {
    font-size: 2rem;
  }

  .promo-content h2 {
    font-size: 1.8rem;
  }

  .contact-content h2 {
    font-size: 2rem;
  }
  
  .email-link {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .music-section {
    padding: 5rem 1rem 1rem 1rem;
  }

  .hero-block {
    min-height: 50vh;
  }

  .promo-block {
    min-height: 50vh;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- HEADER ROW ---------- */
.shop-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.shop-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}

/* Cart button pinned top-right */
.cart-button {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

/* ---------- PRODUCT SECTION ---------- */

.product-section {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}

.product-card {
  width: 100%;
  max-width: 640px; /* ← THIS is the key */
  padding: 0 1rem;
  text-align: center;

  /* HARD RESET for vertical text bugs */
  /*writing-mode: horizontal-tb;*/
  /*word-break: normal;*/
 /* overflow-wrap: normal;*/
 /* white-space: normal;*/
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin: 0.5rem 0;
}

.product-card p {
  opacity: 0.85;
  margin-bottom: 1.25rem;
}
