/*
Theme Name: SANDS66 Studio
Theme URI: https://sands66studio.com
Author: SANDS66 Studio
Author URI: https://sands66studio.com
Description: Official custom theme for SANDS66 Studio — Recording Studio in Knippa, TX. Blues, purples, black and chrome silver.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sands66
*/

/* ===================================
   CSS VARIABLES
=================================== */
:root {
  --blue: #1e7fe8;
  --blue-glow: #2a8fff;
  --blue-dark: #0f4fa0;
  --blue-light: #70b8ff;
  --purple: #6b21d4;
  --purple-mid: #8b3df0;
  --purple-light: #a855f7;
  --purple-glow: #9333ea;
  --purple-deep: #4910a8;
  --accent-text: #c0a8f8;
  --bg: #06040e;
  --bg-s1: #0a0718;
  --bg-s2: #080614;
  --bg-s3: #0e0c1e;
  --card: #0e0c1e;
  --card2: #120e28;
  --text: #f0eeff;
  --muted: #8878a8;
  --silver: #c8d8e8;
  --silver-light: #e8f0f8;
  --silver-mid: #a0b4c8;
  --border: rgba(107,33,212,0.2);
  --border-hover: rgba(107,33,212,0.5);
  --border-blue: rgba(30,127,232,0.3);
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--purple-light); }
ul { list-style: none; }

/* ===================================
   TYPOGRAPHY
=================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--silver-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { margin-bottom: 1rem; color: var(--muted); }

/* ===================================
   CHROME TEXT EFFECT
=================================== */
@keyframes chromeSweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes chromeGlow {
  0%, 100% { filter: drop-shadow(0 2px 0 #7aaad0) drop-shadow(0 4px 0 #4070a0) drop-shadow(0 6px 0 #204878) drop-shadow(0 10px 8px rgba(0,0,0,0.6)) drop-shadow(0 0 22px rgba(80,150,220,0.35)); }
  50%       { filter: drop-shadow(0 2px 0 #90c0e8) drop-shadow(0 4px 0 #5080b8) drop-shadow(0 6px 0 #285898) drop-shadow(0 10px 8px rgba(0,0,0,0.5)) drop-shadow(0 0 32px rgba(80,160,255,0.55)); }
}
.chrome-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(180deg,
    #ffffff 0%, #f5faff 5%, #ddeeff 12%, #b8d4ee 20%,
    #f2f8ff 28%, #c8e0f4 36%, #ffffff 44%, #a0c4e0 52%,
    #d8ecfc 60%, #80a8cc 68%, #bacfe0 76%, #507898 84%,
    #2a5070 92%, #0e2a48 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromeSweep 6s ease-in-out infinite, chromeGlow 4s ease-in-out infinite;
}

/* ===================================
   LAYOUT & CONTAINERS
=================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-s1); }
.section-dark { background: var(--bg-s2); }

/* ===================================
   NAVIGATION
=================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,4,14,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,33,212,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(30,127,232,0.5));
  transition: filter 0.3s;
}
.site-logo img:hover { filter: drop-shadow(0 0 16px rgba(107,33,212,0.8)); }
.site-logo .logo-text-fallback {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#primary-nav ul { display: flex; gap: 2rem; align-items: center; }
#primary-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-text);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a {
  color: var(--silver-light);
  border-bottom-color: var(--purple-mid);
  text-shadow: 0 0 12px rgba(139,61,240,0.8);
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px !important;
  border-bottom: none !important;
  box-shadow: 0 0 14px rgba(107,33,212,0.4);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-glow), var(--purple-mid)) !important;
  box-shadow: 0 0 24px rgba(107,33,212,0.7) !important;
  text-shadow: none !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  background: radial-gradient(ellipse at 40% 50%, #1a0840 0%, #0c0428 40%, #06040e 100%),
              radial-gradient(ellipse at 80% 20%, rgba(30,127,232,0.12) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 3rem 1rem; }
.hero-logo {
  max-width: 360px;
  width: 88%;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 32px rgba(107,33,212,0.9)) drop-shadow(0 0 64px rgba(30,127,232,0.7));
}
.hero-title { font-size: clamp(3.5rem, 10vw, 8rem); margin-bottom: 0.5rem; }
.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 10px;
  color: var(--accent-text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}
.hero-divider {
  width: 200px;
  height: 2px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(90deg, transparent, var(--purple), var(--blue), var(--purple), transparent);
  box-shadow: 0 0 12px rgba(107,33,212,0.5);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--purple-deep) 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(107,33,212,0.4), 0 4px 15px rgba(30,127,232,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-glow) 0%, var(--purple-mid) 50%, var(--purple) 100%);
  box-shadow: 0 0 35px rgba(139,61,240,0.6), 0 4px 20px rgba(30,127,232,0.3);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent-text);
  border: 1px solid var(--purple);
}
.btn-outline:hover {
  background: rgba(107,33,212,0.15);
  box-shadow: 0 0 18px rgba(107,33,212,0.35);
  color: var(--silver-light);
}

/* ===================================
   CARDS
=================================== */
.card {
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(139,61,240,0.06);
}
.card:hover {
  border-color: rgba(139,61,240,0.45);
  box-shadow: 0 8px 32px rgba(107,33,212,0.25), 0 0 0 1px rgba(30,127,232,0.1);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 16px rgba(107,33,212,0.5);
  font-size: 1.5rem;
}
.card h3 { color: var(--silver-light); margin-bottom: 0.75rem; }

/* ===================================
   SECTION HEADINGS
=================================== */
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading h2 { margin-bottom: 0.75rem; }
.section-heading p { max-width: 600px; margin: 0 auto; }
.section-accent-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  margin: 1rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(107,33,212,0.5);
}

/* ===================================
   GRID LAYOUTS
=================================== */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ===================================
   SERVICES SECTION
=================================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-text);
  margin-top: 1rem;
}

/* ===================================
   STATS STRIP
=================================== */
.stats-strip {
  background: linear-gradient(90deg, var(--bg-s2), var(--bg-s3), var(--bg-s2));
  border-top: 1px solid rgba(107,33,212,0.2);
  border-bottom: 1px solid rgba(107,33,212,0.2);
  padding: 3rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0; }
.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-left: 3px solid var(--purple);
}
.stat-item:first-child { border-left: none; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; }

/* ===================================
   BEATS & STORE
=================================== */
.store-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.store-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(107,33,212,0.15);
  background: var(--card);
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}
.store-tab.active, .store-tab:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 0 14px rgba(107,33,212,0.4);
  border-color: transparent;
}
.product-card {
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,61,240,0.45);
  box-shadow: 0 8px 32px rgba(107,33,212,0.25);
}
.product-img {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #0a0428, #1e0a50, #3a1880);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.product-body { padding: 1.25rem; }
.product-name { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--silver-light); margin-bottom: 0.25rem; }
.product-price { color: var(--accent-text); font-weight: 700; font-size: 1.1rem; }
.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(107,33,212,0.35);
  border: 1px solid var(--purple);
  color: var(--accent-text);
  font-size: 0.7rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* ===================================
   MUSIC PLAYER
=================================== */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--bg), var(--bg-s1), var(--bg));
  border-top: 1px solid rgba(107,33,212,0.3);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.player-info { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0; }
.player-art { width: 48px; height: 48px; border-radius: 8px; background: linear-gradient(135deg, var(--purple-deep), var(--blue-dark)); flex-shrink: 0; }
.player-title { font-family: 'Oswald', sans-serif; color: var(--silver-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { font-size: 0.8rem; color: var(--muted); }
.player-controls { display: flex; align-items: center; gap: 1rem; flex: 2; justify-content: center; flex-direction: column; }
.player-btns { display: flex; align-items: center; gap: 1.25rem; }
.player-btn { background: none; border: none; color: var(--muted); cursor: pointer; transition: color 0.2s; font-size: 1.1rem; }
.player-btn:hover { color: var(--silver-light); }
.player-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(107,33,212,0.5);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.player-play:hover { box-shadow: 0 0 28px rgba(107,33,212,0.8); transform: scale(1.08); }
.player-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; cursor: pointer; }
.player-progress-fill { height: 100%; width: 35%; background: linear-gradient(90deg, var(--blue), var(--purple-mid)); border-radius: 2px; }
.player-time { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--muted); }

/* ===================================
   BOOKING FORM
=================================== */
.booking-form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.9rem; color: var(--silver-mid); margin-bottom: 0.5rem; font-weight: 500; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-s1);
  border: 1px solid rgba(107,33,212,0.25);
  border-radius: 8px;
  color: #e8e0ff;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-input::placeholder, .form-textarea::placeholder { color: #6858a0; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(107,33,212,0.15);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===================================
   TESTIMONIALS
=================================== */
.testimonial-card {
  background: var(--bg-s1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-stars { color: var(--purple-light); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text { color: var(--accent-text); font-style: italic; margin-bottom: 1rem; }
.testimonial-author { color: var(--silver-mid); font-size: 0.9rem; font-weight: 600; }

/* ===================================
   CONTACT
=================================== */
.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 1rem; color: var(--silver-light); margin: 0; }
.contact-info-card a { color: var(--blue-light); }
.contact-info-card a:hover { color: var(--purple-light); }

/* ===================================
   SOCIAL ICONS
=================================== */
.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(107,33,212,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.3s;
}
.social-link:hover {
  color: var(--purple-light);
  border-color: var(--purple);
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.7));
  transform: translateY(-2px);
}

/* ===================================
   FOOTER
=================================== */
#site-footer {
  background: #04030a;
  border-top: 1px solid rgba(107,33,212,0.3);
  padding: 4rem 0 2rem;
}
.footer-logo img {
  height: 64px; width: auto;
  filter: drop-shadow(0 0 8px rgba(30,127,232,0.4));
  margin-bottom: 1rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(107,33,212,0.15); }
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--silver-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(107,33,212,0.3);
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copyright { font-size: 0.85rem; color: var(--muted); }

/* ===================================
   PAGE HERO BANNERS
=================================== */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,8,64,0.6) 0%, transparent 100%);
  border-bottom: 1px solid rgba(107,33,212,0.2);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { max-width: 600px; margin: 0 auto; }

/* ===================================
   WORDPRESS SPECIFIC
=================================== */
.wp-block-image { margin: 1.5rem 0; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { margin: 1.5rem auto; text-align: center; }
.entry-content { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem; }
.entry-content p { color: var(--text); }
.entry-content h1, .entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; color: var(--muted); }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #primary-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(6,4,14,0.98); border-bottom: 1px solid rgba(107,33,212,0.25); padding: 1.5rem; }
  #primary-nav.open { display: block; }
  #primary-nav ul { flex-direction: column; gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-left: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .card { padding: 1.5rem; }
}

/* Body padding for fixed nav + player */
body { padding-top: 70px; padding-bottom: 80px; }
