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

:root {
  --bg-color: #fdfdfd;
  --surface-color: #ffffff;
  --primary-red: #cc0000;
  --primary-red-hover: #b30000;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --border-color: #eeeeee;
  --site-width: 1240px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 15px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
body { background-color: var(--bg-color); color: var(--text-primary); font-family: var(--font-inter); -webkit-font-smoothing: antialiased; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-outfit); font-weight: 800; color: #111; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
.container { max-width: var(--site-width); margin: 0 auto; padding: 0 24px; width: 100%; }

/* --- Branded Navbar --- */
.navbar-main { background: var(--primary-red); position: sticky; top: 0; z-index: 1000; padding: 12px 0; box-shadow: 0 4px 12px rgba(230,0,0,0.1); }
.nav-main-content { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a { color: white; padding: 10px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.nav-links a:hover { opacity: 1; background: rgba(0,0,0,0.05); border-radius: 8px; }
.contact-pill { background: white !important; color: var(--primary-red) !important; border-radius: 50px; padding: 10px 25px !important; margin-left: 10px; opacity: 1 !important; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.mobile-toggle { display: none; }

/* --- Grid Systems --- */
.responsive-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.responsive-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.grid-3x2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.main-sidebar-layout { display: grid; grid-template-columns: 350px 1fr; gap: 50px; align-items: start; }

/* --- Enhanced Premium Cards --- */
.portal-card, .small-artist-card { 
    background: white; 
    border: 1px solid rgba(0,0,0,0.05); 
    border-radius: 24px; 
    overflow: hidden; 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
    position: relative; 
    display: flex;
    flex-direction: column;
}

.portal-card:hover, .small-artist-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.1); 
    border-color: var(--primary-red); 
}

.portal-card .card-img-holder {
    height: 200px;
    background: #fdfdfd;
    padding: 0; /* Changed to 0 for full image display */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}

@media (max-width: 768px) {
    .portal-card .card-img-holder {
        height: 160px !important;
    }
}


.portal-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-card:hover img {
    transform: scale(1.1);
}

/* Red Arrow Explore Card */
.explore-link-card {
    background: var(--primary-red) !important;
    border: none !important;
    color: white !important;
    padding: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.explore-link-card h4 { color: white !important; font-size: 14px; letter-spacing: 2px; }
.explore-link-card .arrow-icon { font-size: 40px; margin-bottom: 10px; transition: 0.3s; }
.explore-link-card:hover .arrow-icon { transform: translateX(10px) scale(1.2); }

/* --- Mobile Responsiveness --- */
/* --- Mobile Responsiveness Overhaul --- */
@media (max-width: 1024px) {
  .main-sidebar-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .responsive-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-main { padding: 10px 0; }
  .mobile-toggle { display: block !important; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 100px 40px;
    gap: 15px;
    z-index: 1500;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex !important;
    opacity: 0;
    visibility: hidden;
  }
  .nav-links.is-open { right: 0; opacity: 1; visibility: visible; }
  .nav-links a { font-size: 20px !important; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0 !important; }
  .contact-pill { background: var(--primary-red) !important; color: white !important; width: 100%; text-align: center; margin-top: 20px; }
  .mobile-search-area input { font-family: var(--font-inter); outline: none; transition: 0.3s; }
  .mobile-search-area input:focus { border-color: var(--primary-red); background: rgba(255,255,255,0.2); }

  .nav-links a { font-size: 20px !important; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0 !important; }
  .contact-pill { background: var(--primary-red) !important; color: white !important; width: 100%; text-align: center; margin-top: 20px; }
  .mobile-search-area input { font-family: var(--font-inter); outline: none; transition: 0.3s; }
  .mobile-search-area input:focus { border-color: var(--primary-red); background: rgba(255,255,255,0.2); }

  /* Hero Refinement */
  .hero-container { height: 500px !important; }
  .hero-title { font-size: 32px !important; }

  /* Black Event Box Responsive */
  .event-highlight-box { padding: 40px 20px !important; border-radius: 25px !important; margin-bottom: 60px !important; margin-left: 10px; margin-right: 10px; }
  .event-highlight-box h2 { font-size: 24px !important; line-height: 1.2; }
  .event-highlight-box .responsive-grid-3 { grid-template-columns: 1fr !important; gap: 20px !important; }
  
  /* Horizontal Grid Animation (Slide-in) */
  .mobile-horizontal-scroll {
    display: flex !important;
    gap: 15px !important;
    overflow-x: auto !important;
    padding-bottom: 15px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .reveal-view { 
      opacity: 0; 
      transform: translateY(20px); 
      transition: all 0.8s ease-out;
  }
  .reveal-view.is-visible { 
      opacity: 1; 
      transform: translateY(0); 
  }
  .reveal-view.is-visible { 
      opacity: 1; 
      transform: translateX(0); 
  }
  
  /* Modern Event Card (Artist Style) */
  .event-card-modern {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      transition: 0.3s;
      border: 1px solid #f0f0f0;
      width: 100%; /* Default full width */
  }
  .event-card-modern:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .event-card-img { height: 200px; width: 100%; overflow: hidden; }
  .event-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .event-card-body { padding: 20px; background: white; text-align: left; }
  .event-card-body h4 { color: #111; font-size: 16px; margin-bottom: 5px; font-weight: 800; }
  .event-card-body p { color: var(--primary-red); font-size: 11px; font-weight: 800; text-transform: uppercase; }

  @media (max-width: 768px) {
      .mobile-horizontal-scroll {
          display: flex !important;
          flex-wrap: nowrap !important;
          gap: 15px !important;
          overflow-x: auto !important;
          padding: 10px 0 20px !important;
          width: 100% !important;
      }
      .event-card-modern { flex: 0 0 260px !important; width: 260px !important; }
      .event-card-img { height: 170px !important; }
      .event-card-body { padding: 15px !important; }
  }

  /* Marquee Animation */
  .marquee-auto-scroll {
      display: flex !important;
      gap: 35px;
      animation: marqueeContinuous 30s linear infinite;
      white-space: nowrap;
      width: max-content;
  }
  @keyframes marqueeContinuous {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); } /* Assuming we duplicate items */
  }
  .marquee-wrapper { overflow: hidden; width: 100%; }

  /* Button Fixes */
  .premium-btn-mobile-full { width: 100%; display: block; text-align: center; margin-top: 20px; }

  /* Marquee Animation */
  .marquee-wrapper { 
      overflow: hidden; 
      width: 100%; 
      position: relative;
      cursor: grab;
  }
  .marquee-auto-scroll {
      display: flex !important;
      gap: 35px;
      animation: marqueeContinuous 40s linear infinite;
      white-space: nowrap;
      width: max-content;
      will-change: transform;
  }
  .marquee-wrapper:hover .marquee-auto-scroll {
      animation-play-state: paused;
  }
  @keyframes marqueeContinuous {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
  }

  .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; gap: 40px 20px; }
  .footer-col:first-child { grid-column: 1 / -1; } /* Logo/Bio stays full width */
  .portal-box-header { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; }
  .portal-box-title { font-size: 20px !important; }
}

/* --- Artists Directory Sidebar --- */
.main-sidebar-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; }
aside { position: sticky; top: 100px; height: fit-content; }
.category-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.category-list a { 
  display: flex; 
  justify-content: space-between; 
  padding: 12px 20px; 
  background: white; 
  border-radius: 12px; 
  border: 1px solid #f0f0f0; 
  font-size: 14px; 
  font-weight: 600; 
  transition: 0.3s; 
}
.category-list a:hover, .category-list a.active { 
  background: var(--primary-red); 
  color: white !important; 
  border-color: var(--primary-red);
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .main-sidebar-layout { grid-template-columns: 1fr; }
  aside { position: relative; top: 0; margin-bottom: 30px; }
  .category-list { flex-direction: row; overflow-x: auto; padding-bottom: 15px; scrollbar-width: none; }
  .category-list::-webkit-scrollbar { display: none; }
  .category-list a { white-space: nowrap; }
}

.premium-btn { background: var(--primary-red); color: white; padding: 14px 32px; border-radius: 8px; font-weight: 800; font-size: 14px; border: none; cursor: pointer; transition: 0.3s; }
.premium-btn:hover { background: var(--primary-red-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(204, 0, 0, 0.2); }

.cat-item { text-align: center; transition: 0.3s; cursor: pointer; }
.cat-icon-container { width: 90px; height: 90px; margin: 0 auto 15px; position: relative; display: flex; align-items: center; justify-content: center; }
.cat-icon { width: 64px; height: 64px; background: #1a1a1a; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; z-index: 2; transition: 0.3s; }
.cat-item:hover .cat-icon { background: var(--primary-red); }
.cat-base { position: absolute; bottom: -5px; width: 70px; height: 15px; background: radial-gradient(circle, rgba(230,0,0,0.3) 0%, rgba(230,0,0,0) 70%); z-index: 1; transition: 0.3s; }
.cat-item:hover .cat-base { transform: scale(1.5); }

/* Footer Interactivity */
.footer-links a {
    display: block;
    color: #666;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}
.social-circle:hover {
    background: var(--primary-red);
    color: white !important;
    transform: translateY(-5px);
}
.footer-bottom a:hover {
    color: var(--primary-red);
}
