@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --primary: #C87E7E;
  --primary-light: #D4A0A0;
  --primary-dark: #A65D5D;
  --bg: #141414;
  --surface: #1E1E1E;
  --surface-2: #282828;
  --text: #F5E6E0;
  --text-secondary: #B0A8A4;
  --accent: #E8C4B8;
  --glass: rgba(200,126,126,0.08);
  --glass-border: rgba(200,126,126,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a {
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--primary);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.nav__hamburger span {
  width: 24px; height: 1.5px; background: var(--text);
  transition: var(--transition);
}

.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.nav__mobile.active { display: flex; }
.nav__mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--text-secondary);
  transition: var(--transition); letter-spacing: 0.05em;
}
.nav__mobile a:hover { color: var(--primary-light); }
.nav__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; font-size: 2rem; color: var(--text);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 2rem 1.5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(200,126,126,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero__logo {
  width: min(320px, 70vw); margin-bottom: 1.5rem;
  animation: fadeUp 1s ease-out;
}
.hero__tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300; color: var(--text-secondary);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease-out 0.3s both;
}
.hero__scroll {
  position: absolute; bottom: 2rem;
  animation: fadeUp 1s ease-out 0.6s both;
}
.hero__scroll span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--transition);
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text); box-shadow: 0 4px 20px rgba(200,126,126,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,126,126,0.45);
}
.btn--outline {
  background: transparent; color: var(--primary-light);
  border: 1px solid var(--glass-border);
}
.btn--outline:hover {
  background: var(--glass); border-color: var(--primary);
}
.btn--float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  box-shadow: 0 4px 24px rgba(200,126,126,0.4);
  animation: fadeUp 0.5s ease-out;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem; max-width: 1200px;
  margin: 0 auto;
}
.section__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text); margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 560px; font-weight: 300; line-height: 1.8;
}
.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ===== ABOUT / VALUES ===== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(200,126,126,0.12);
}
.value-card__icon {
  font-size: 2rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-card__title {
  font-size: 1.3rem; margin-bottom: 0.5rem;
}
.value-card__text {
  font-size: 0.9rem; color: var(--text-secondary); font-weight: 300;
}

/* ===== ARTISTS GRID ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.artist-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
  transition: var(--transition);
}
.artist-card:hover { transform: translateY(-6px); }
.artist-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.artist-card:hover img { transform: scale(1.05); }
.artist-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  transition: var(--transition);
}
.artist-card:hover .artist-card__overlay {
  background: linear-gradient(to top, rgba(200,126,126,0.4) 0%, transparent 70%);
}
.artist-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
}
.artist-card__cta {
  font-size: 0.75rem; color: var(--primary-light);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 0.3rem; opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.artist-card:hover .artist-card__cta { opacity: 1; transform: translateY(0); }

/* ===== LOCATION ===== */
.location { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.location__inner {
  display: grid; grid-template-columns: 1fr 1fr;
}
.location__info { padding: 3rem 2rem; }
.location__map { min-height: 350px; }
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.8) brightness(0.7); }
.location__detail {
  display: flex; gap: 0.75rem; margin-bottom: 1.25rem;
  font-size: 0.9rem; color: var(--text-secondary);
}
.location__detail-icon { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.schedule-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1rem;
  font-size: 0.85rem; color: var(--text-secondary);
}
.schedule-grid .day { font-weight: 500; color: var(--text); }
.schedule-grid .closed { color: var(--primary-dark); }

@media (max-width: 768px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map { min-height: 250px; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  margin-top: 3rem;
}
.footer__logo { height: 36px; margin: 0 auto 1rem; }
.footer__text { font-size: 0.8rem; color: var(--text-secondary); }
.footer__socials {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-top: 1rem;
}
.footer__socials a {
  color: var(--text-secondary); font-size: 1.2rem;
  transition: var(--transition);
}
.footer__socials a:hover { color: var(--primary-light); }

/* ===== ARTIST PAGE ===== */
.artist-hero {
  padding: 8rem 1.5rem 4rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.artist-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(200,126,126,0.08) 0%, transparent 50%);
}
.artist-hero__photo {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--glass-border);
  margin-bottom: 1.5rem; position: relative;
  box-shadow: 0 0 40px rgba(200,126,126,0.15);
}
.artist-hero__name {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}
.artist-hero__sub {
  font-size: 0.85rem; color: var(--text-secondary);
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* ===== PORTFOLIO GALLERY ===== */
.gallery { padding: 2rem 1.5rem 5rem; max-width: 1200px; margin: 0 auto; }
.gallery__grid {
  columns: 3; column-gap: 12px;
}
.gallery__item {
  break-inside: avoid; margin-bottom: 12px;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery__item img {
  width: 100%; display: block;
  transition: var(--transition);
}
.gallery__item:hover img { transform: scale(1.03); filter: brightness(0.85); }
.gallery__item::after {
  content: '⤢'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white; opacity: 0;
  background: rgba(200,126,126,0.2);
  transition: var(--transition);
}
.gallery__item:hover::after { opacity: 1; }

@media (max-width: 768px) { .gallery__grid { columns: 2; } }
@media (max-width: 480px) { .gallery__grid { columns: 2; column-gap: 8px; } .gallery__item { margin-bottom: 8px; } }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: var(--radius-sm);
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; font-size: 2rem; color: var(--text);
  cursor: pointer; z-index: 201;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text); font-size: 1.5rem; padding: 0.8rem 1rem;
  border-radius: 50%; cursor: pointer; transition: var(--transition);
}
.lightbox__nav:hover { background: var(--primary); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ===== BOOKING PAGE ===== */
.booking { padding: 8rem 1.5rem 4rem; max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--surface); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,126,126,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  display: none; text-align: center; padding: 3rem 1rem;
}
.form-success.active { display: block; }
.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success__title { font-size: 2rem; margin-bottom: 0.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  position: fixed; top: 1.2rem; left: 1.5rem; z-index: 100;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); transition: var(--transition);
  background: rgba(20,20,20,0.8); padding: 0.5rem 1rem;
  border-radius: 50px; backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}
.back-link:hover { color: var(--text); border-color: var(--primary); }
