/* ===== CASEVETI WEBSITE - MAIN STYLESHEET ===== */

/* ===== ROOT & GLOBAL STYLES ===== */
:root {
  --primary-color: #00ffcc;
  --primary-hover: #00cca3;
  --dark-bg: rgba(0, 0, 0, 0.7);
  --darker-bg: rgba(0, 0, 0, 0.8);
  --darkest-bg: rgba(0, 0, 0, 0.85);
  --text-light: #e8e2da;
  --dark-accent: #0e0b09;
  --white: #ffffff;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--dark-bg);
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: var(--white);
  text-align: center;
  min-height: 100%;
  line-height: 1.5;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 200;
  transition: all 0.3s ease;
  padding: 0;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger:hover span {
  background: var(--white);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

.hamburger:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media screen and (max-width: 600px) {
  .hamburger {
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
  }

  .hamburger span {
    width: 25px;
    height: 2.5px;
  }
}

/* ===== SIDE NAVIGATION ===== */
.sidebar-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(14, 11, 9, 0.98));
  padding: 20px 0;
  z-index: 150;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  border-right: 2px solid var(--primary-color);
}

.sidebar-nav.active {
  transform: translateX(0);
}

.nav-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
  padding-bottom: 20px;
}

.close-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
  line-height: 1;
  font-weight: bold;
}

.close-btn:hover {
  color: var(--white);
  background: rgba(0, 255, 204, 0.1);
  border-color: var(--white);
}

.close-btn:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

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

.nav-link {
  display: block;
  padding: 15px 30px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  font-family: 'Bebas Neue', sans-serif;
}

.nav-link:hover {
  background: rgba(0, 255, 204, 0.1);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  padding-left: 35px;
}

.nav-link.active {
  background: rgba(0, 255, 204, 0.15);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: -2px;
}

/* ===== NAVIGATION OVERLAY ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== OLD NAVBAR - REMOVE ===== */
nav.navbar {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('band2.JPG') center/cover no-repeat;
  filter: grayscale(100%);
  margin-top: 0;
}

.hero h1 {
  font-size: 6.0rem;
  font-weight: normal;
  position: relative;
  color: var(--white);
  -webkit-text-stroke: 2px var(--black);
  top: -10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero {
    margin-top: 0;
  }
}

/* ===== SECTION STYLES ===== */
section {
  padding: 50px 20px;
  background: var(--dark-bg);
}

section:nth-child(odd) {
  background: var(--darker-bg);
}

section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

/* ===== EMAIL SIGNUP ===== */
.email-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('band2.JPG') center/cover no-repeat;
  color: var(--white);
  padding: 40px 20px;
  max-width: 500px;
  margin: 40px auto;
  border-radius: 8px;
}

.email-signup h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.email-signup form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.email-signup input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  flex: 1;
  min-width: 200px;
}

.email-signup input[type="email"]:focus {
  background-color: rgba(255, 255, 255, 0.2);
  outline: 2px solid var(--primary-color);
  color: var(--white);
}

.email-signup button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  color: var(--black);
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.email-signup button:hover {
  background-color: var(--primary-hover);
}

.email-signup button:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .email-signup form {
    flex-direction: column;
    align-items: stretch;
  }

  .email-signup input[type="email"],
  .email-signup button {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 50px 20px;
  justify-content: flex-start;
}

.photo-gallery img {
  width: 300px;
  height: auto;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.photo-gallery img:hover {
  filter: grayscale(50%);
  transform: scale(1.02);
}

.photo-gallery img:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== SHOP SECTION ===== */
.shop {
  padding: 100px 5%;
  background: var(--darkest-bg);
}

.shop h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-align: center;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  text-align: center;
}

.product-image {
  background: var(--dark-accent);
  padding: 20px;
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product:hover .product-image img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.product-info {
  margin-top: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.price {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 18px;
}

.product button {
  background: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  padding: 10px 26px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.product button:hover {
  background: var(--text-light);
  color: var(--dark-accent);
}

.product button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --primary-color: #00ffff;
    --text-light: #ffffff;
  }
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===== SPOTIFY PLAYER SECTION ===== */
.spotify-player-section {
  background: var(--darker-bg);
  padding: 60px 20px;
}

.spotify-player-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.spotify-embed {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.spotify-embed iframe {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 255, 204, 0.15);
  transition: box-shadow 0.3s ease;
}

.spotify-embed iframe:hover {
  box-shadow: 0 4px 16px rgba(0, 255, 204, 0.25);
}

@media (max-width: 768px) {
  .spotify-player-section {
    padding: 40px 10px;
  }

  .spotify-player-section .container {
    padding: 0 10px;
  }

  .spotify-embed iframe {
    height: 232px !important;
  }
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-media {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.social-media h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin: 0 0 15px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 255, 204, 0.1);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: scale(1.15);
}

.social-icons a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(1);
}

.social-icons a:hover img {
  filter: brightness(0);
}

.social-icons a:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ===== STREAMING PLATFORMS SECTION ===== */
.streaming-section {
  background: var(--darker-bg);
}

.streaming-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 40px auto;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: rgba(0, 255, 204, 0.05);
  border: 2px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-light);
}

.platform-link:hover {
  background: rgba(0, 255, 204, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 255, 204, 0.2);
}

.platform-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.platform-link img {
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.3));
}

.platform-link:hover img {
  transform: scale(1.15);
}

.platform-link span {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .streaming-platforms {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .platform-link {
    padding: 20px 15px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--darkest-bg);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

footer p {
  margin: 10px 0;
  opacity: 0.8;
}
