/*
Theme Name: Betin Gunes Professional
Author: Gemini + Copilot
Description: Unified Minimalist Artist Theme with Video Background & Consistent Typography/Color System.
Version: 2.0
*/

/* --------------------
   Root Variables
-------------------- */
:root {
  --bg-black: #000000;
  --surface-dark: #0a0a0a;
  --surface-alt: #080808;
  --card-bg: rgba(20, 20, 20, 0.85);

  /* Gold palette */
  --gold: #c6a15b;
  --gold-soft: #e3c982;
  --gold-dim: #b28b4a;

  /* Text */
  --text-light: #f0f0f0;
  --text-muted: #a0a0a0;

  /* Borders */
  --border-dim: #222222;
  --border-soft: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-main: "Inter", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", serif;
}

/* --------------------
   Base Reset
-------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--bg-black);
  font-family: var(--font-main);
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

/* --------------------
   Typography
-------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-light); }
.text-muted { color: var(--text-muted); }

/* --------------------
   Navbar
-------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f1f1f;
  padding: 1rem 0;
}

.nav-flex {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  flex-wrap: wrap;
}

.nav-flex a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-flex a:hover {
  color: var(--gold);
}

/* --------------------
   Hero Section (Video)
-------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-content { z-index: 1; }

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold) 90%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.hero-sub{
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 1.8rem;
}
/* --------------------
   Sections
-------------------- */
section {
  padding: 30px 0;
  border-bottom: 1px solid #151515;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

/* --------------------
   Concerts List
-------------------- */
.concerts-wrapper {
  background: var(--surface-alt);
  border-radius: 28px;
  border: 1px solid #2a2a2a;
  padding: 1.8rem;
  margin: 1rem 0 1.5rem;
}

.concert-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid #242424;
}

.concert-date {
  font-weight: 600;
  color: var(--gold);
  min-width: 200px;
  font-size: 1.2rem;
}

.concert-city {
  font-weight: 600;
  min-width: 110px;
  color: var(--text-light);  
  font-size: 1.2rem;
}

.concert-venue {
  flex: 2;
  color: #bcbcbc;
  font-size: 1.2rem;
}

.concert-tag {
  font-size: 1.2rem;
  background: rgba(198, 161, 91, 0.15);
  padding: 3px 10px;
  border-radius: 30px;
  color: var(--gold);
}

/* --------------------
   About & Videos
-------------------- */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #e0cfb2;
  margin: 1.8rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
  }
  .video-card {
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease;
    border: 1px solid #222;
  }
  .video-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dim);
  }
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-info {
    padding: 1rem 1.2rem 1.3rem;
  }
  .video-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #f5f5f5;
  }
  .video-info p {
    font-size: 0.8rem;
    color: #aaa;
  }

/* --------------------
   Spotify & Contact
-------------------- */
.spotify-wrapper {
  background: var(--surface-alt);
  border-radius: 28px;
  border: 1px solid #2a2a2a;
  padding: 1.8rem;
}

.spotify-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.spotify-item {
  flex: 1;
  min-width: 240px;
}

.contact-card {
  background: var(--surface-dark);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid #2a2a2a;
  text-align: center;
}

/* --------------------
   Buttons
-------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--gold-soft);
  color: #111;
  border-color: var(--gold-soft);
}

/* --------------------
   Responsive
-------------------- */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .concert-item { flex-direction: column; gap: 5px; }
}
ze: 0.9rem;\n  text-transform: uppercase;\n  letter-spacing: 0.14em;\n  cursor: pointer;\n  transition: 0.2s ease;          /app/index.php 