/* assets/css/style.css - Minimalist Montserrat 11px Theme */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #6e263a;
  --primary-dark: #4a1927;
  --accent-color: #ffa203;
  --accent-warm: #e4cfbc;
  --gold-color: #ffa203;
  --orange-menu: #ffa203;
  --bg-light: #f7f7f7;
  --bg-white: #ffffff;
  --text-dark: #6e263a;
  --text-body: #6e263a;
  --text-muted: #6e263a;
  --text-light: #ffffff;
  --border-color: #e5e5e5;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --header-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: inherit;
  letter-spacing: 0px;
}

html {
  scroll-behavior: smooth;
  font-size: 11px;
  color: #6e263a;
  letter-spacing: 0px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  background-color: var(--bg-light);
  color: #6e263a;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== MINIMALIST HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #ffa203;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #6e263a;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #6e263a;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  background-color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

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

.social-icons a {
  color: #6e263a;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.cart-toggle-btn {
  background: #6e263a;
  border: 1px solid #6e263a;
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.cart-toggle-btn:hover {
  background: #ffffff;
  color: #6e263a;
  border-color: #ffffff;
}

.cart-badge {
  background-color: #ffa203;
  color: #6e263a;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==================== HERO SLIDER (FULL SCREEN 100VH) ==================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-top: 0;
  overflow: hidden;
  background-color: #ffa203;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.slide-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: #eeeeee;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: 1px solid #0a0a0a;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: #515151;
  border-color: #515151;
  color: #ffffff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-arrow:hover {
  background: #ffffff;
  color: #000000;
}

.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* ==================== SECTIONS ==================== */
.section {
  padding: 4.5rem 2rem;
}

.container {
  max-width: 1144px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #6e263a;
  margin-bottom: 0.4rem;
  text-align: center;
}

.page-banner-header {
  margin-top: var(--header-height);
  padding: 4rem 1rem 2.5rem;
  background-color: #f7f7f7;
  text-align: center;
  color: #6e263a;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #6e263a;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}

.page-banner-subtitle {
  color: #6e263a;
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
}

/* ==================== TOUR / EVENTS ==================== */
.tour-section {
  background-color: var(--bg-light);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}

.event-poster {
  width: 65px;
  height: 81px; /* Proporción 1080x1350 (4:5) */
  object-fit: cover;
  border-radius: 4px;
  margin-right: 1.2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-poster:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Modal Pop-up para Afiche 1080x1350 */
.poster-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.poster-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.poster-modal-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poster-modal-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  aspect-ratio: 1080 / 1350;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.poster-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
  transition: color 0.2s ease;
}

.poster-modal-close:hover {
  color: #ffa203;
}

.event-card:hover {
  border-color: #36344D;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.event-date {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
  min-width: 180px;
}

.event-info {
  flex-grow: 1;
  padding: 0 1.5rem;
}

.event-city {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-venue {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ==================== MUSIC / DISCOGRAPHY ==================== */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.album-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.album-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.album-info {
  padding: 1.5rem;
}

.album-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.album-year {
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.spotify-embed {
  width: 100%;
  height: 152px;
  border-radius: 4px;
  border: 0;
  margin-top: 1rem;
}

/* ==================== SHOP / PRODUCTS ==================== */
.shop-section {
  background-color: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card:hover {
  border-color: #36344D;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-image-wrap {
  width: 100%;
  height: 280px;
  background-color: #fafafa;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.product-description {
  color: var(--text-body);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.add-to-cart-btn {
  width: 100%;
  background: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.8rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
  background: #515151;
}

/* ==================== CART DRAWER ==================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #ffffff;
  color: #1a1a1a;
  z-index: 2001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 1.2rem 1.5rem;
  background: #36344D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.close-cart-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 3px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.cart-item-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.qty-btn {
  background: #eeeeee;
  color: #1a1a1a;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}

.remove-item-btn {
  background: transparent;
  border: none;
  color: #dc3545;
  font-size: 0.75rem;
  cursor: pointer;
  margin-left: auto;
}

.cart-footer {
  padding: 1.5rem;
  background: #f7f7f7;
  border-top: 1px solid #eeeeee;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.cart-total-price {
  color: var(--accent-color);
}

.checkout-btn {
  width: 100%;
  background: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.checkout-btn:hover {
  background: #515151;
}

/* ==================== CHECKOUT MODAL ==================== */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkout-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: #ffffff;
  color: #1a1a1a;
  width: 90%;
  max-width: 550px;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  color: #333333;
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #1a1a1a;
  padding: 0.75rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: #36344D;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col p {
  color: #dddddd;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.65rem 0.9rem;
  border-radius: 3px 0 0 3px;
  flex-grow: 1;
  font-size: 0.85rem;
}

.newsletter-input::placeholder {
  color: #cccccc;
}

.newsletter-btn {
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
  font-size: 0.82rem;
}

/* Mobile Toggle Button (Hidden on Desktop) */
.mobile-menu-btn {
  display: none !important;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #6e263a;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1005;
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
    position: static !important;
    height: auto !important;
    width: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: row !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .site-header {
    height: auto !important;
    min-height: 60px !important;
  }

  .header-container {
    padding: 0.6rem 1.2rem !important;
    height: 60px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .brand-logo img {
    height: 32px !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .main-nav {
    display: none !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 60px) !important;
    background: #ffa203 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 2.5rem 1.5rem !important;
    gap: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
  }

  .main-nav.mobile-active {
    display: flex !important;
    animation: fadeInDown 0.25s ease-in-out;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

  .nav-links a {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #6e263a !important;
    letter-spacing: 0px !important;
    padding: 0.5rem 1rem !important;
  }

  .header-actions {
    margin-top: 1.5rem !important;
  }

  .social-icons {
    gap: 1.5rem !important;
  }

  .social-icons a {
    font-size: 1.4rem !important;
    color: #6e263a !important;
  }

  .slide-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  .slide-subtitle {
    font-size: 0.9rem !important;
  }

  .event-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
    padding: 1.2rem 1rem !important;
  }

  .event-card .btn-primary {
    width: 100% !important;
    text-align: center !important;
    padding: 0.8rem 1rem !important;
  }

  .spotify-embed {
    max-height: 480px !important;
  }

  .page-banner-title {
    font-size: 1.6rem !important;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
