/* ============================================================
   ALCHEMY MURFREESBORO — STYLESHEET
   ============================================================ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --gold: #c8a052;
  --gold-light: #e4c07a;
  --mint: #8fbfaa;
  --white: #f5f5f0;
  --grey: #888;
  --light-grey: #ccc;
  --font-display: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --font-ui: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-icon { width: 20px; height: 20px; object-fit: contain; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,160,82,0.2);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-link { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid rgba(200,160,82,0.2);
  z-index: 1100;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 24px;
}
.nav-drawer.open { right: 0; }

.nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-close:hover { opacity: 1; }

.nav-drawer-inner { margin-top: 60px; display: flex; flex-direction: column; gap: 4px; }

.nav-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 8px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-item:hover { color: var(--gold); }
.nav-icon { font-size: 15px; min-width: 20px; }

.nav-cta-wrap { margin: 24px 0 16px; }
.nav-social { display: flex; gap: 16px; padding-top: 12px; }
.nav-social img { width: 32px; height: 32px; object-fit: contain; opacity: 0.8; transition: opacity 0.2s; }
.nav-social img:hover { opacity: 1; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
}
.nav-overlay.active { display: block; }

/* ============================================================
   FLOATING SOCIAL
   ============================================================ */
.floating-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.floating-social a { display: block; }
.floating-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
}
.floating-social img:hover { opacity: 1; transform: scale(1.1); }

@media (max-width: 768px) { .floating-social { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
}

.hero-container {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.hero-logo {
  width: min(560px, 90vw);
  animation: fadeInDown 0.9s ease both;
}

.hero-info { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.hero-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  animation: fadeIn 1s ease 0.3s both;
}

.hero-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(245,245,240,0.85);
  max-width: 560px;
  animation: fadeIn 1s ease 0.5s both;
}

.hero-highlight {
  color: var(--gold);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeIn 1s ease 0.7s both;
}

/* ============================================================
   STUDIO
   ============================================================ */
.studio-section {
  background: var(--white);
  color: var(--black);
  padding: 80px 24px;
}

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

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) { .studio-grid { grid-template-columns: 1fr; } }

.section-header { margin-bottom: 32px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 2px;
}

.section-title-line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
}

.studio-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.studio-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.2s, background 0.2s;
  color: var(--black);
}
.studio-detail-item:hover { border-color: var(--gold); background: rgba(200,160,82,0.04); }

.detail-icon { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }

.studio-detail-item h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.studio-detail-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.directions-btn { display: inline-flex; }

/* Slider */
.studio-slider { position: relative; }

.slider {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.slide { min-width: 100%; }
.slide img { width: 100%; height: 400px; object-fit: cover; }

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 32px;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.slide-btn:hover { background: rgba(0,0,0,0.8); }
.slide-btn.prev { left: 0; }
.slide-btn.next { right: 0; }

.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.dot.active { background: var(--gold); }

/* ============================================================
   ARTISTS
   ============================================================ */
.artists-section {
  background: var(--black);
  padding: 80px 24px;
}

.artists-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 4px;
  color: var(--white);
}

.artists-title-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.artists-container {
  max-width: 1100px;
  margin: 60px auto 0;
}

/* Artist Card */
.artist-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  margin-bottom: 4px;
  background: var(--dark);
  border: 1px solid rgba(200,160,82,0.15);
  transition: border-color 0.3s;
}
.artist-card:hover { border-color: rgba(200,160,82,0.4); }
.artist-card.layout-right { direction: rtl; }
.artist-card.layout-right > * { direction: ltr; }

@media (max-width: 900px) {
  .artist-card,
  .artist-card.layout-right { grid-template-columns: 1fr; direction: ltr; }
}

.artist-photo-wrap {
  position: relative;
  overflow: hidden;
}
.artist-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.artist-card:hover .artist-photo-wrap img { transform: scale(1.03); }

.artist-info {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.artist-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
}

.artist-name-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.artist-bio {
  font-size: 14px;
  color: rgba(245,245,240,0.75);
  line-height: 1.85;
  white-space: pre-line;
}

.artist-availability {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.avail-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avail-accepting .avail-dot { background: #5cba7d; }
.avail-accepting { color: #5cba7d; }
.avail-waitlist .avail-dot { background: #e4c07a; }
.avail-waitlist { color: #e4c07a; }
.avail-closed .avail-dot { background: #d96a5a; }
.avail-closed { color: #d96a5a; }

.artist-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 20px;
  transition: background 0.2s;
}
.btn-contact:hover { background: var(--gold-light); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-instagram:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-sm-icon { width: 16px; height: 16px; object-fit: contain; }

.artist-divider {
  height: 1px;
  background: rgba(200,160,82,0.12);
  margin: 4px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(200,160,82,0.2);
  padding: 60px 24px 32px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.footer-newsletter { max-width: 480px; }
.footer-newsletter h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-newsletter p { font-size: 14px; color: var(--grey); margin-bottom: 20px; }

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--grey); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.form-success {
  display: none;
  color: #5cba7d;
  font-size: 14px;
  margin-top: 12px;
}
.form-success.show { display: block; }

.footer-logo img { height: 64px; width: auto; opacity: 0.85; }

.footer-social { display: flex; gap: 20px; }
.footer-social img { width: 36px; height: 36px; object-fit: contain; opacity: 0.7; transition: opacity 0.2s; }
.footer-social img:hover { opacity: 1; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-info > div { }
.footer-info h6 {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-info a, .footer-info p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}
.footer-info a:hover { color: var(--white); }

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

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

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }
