/* ============================================
   DMVTMT - Unified Site Styles
   Colors derived from logo:
     Teal:  #2AADAD  (figures/treble clef)
     Gold:  #C4A85C  (circle border)
     Dark:  #003E46  (text/backgrounds)
   ============================================ */

/* Fonts loaded via <link> in HTML head for performance */

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

/* --- Base --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #d4d4d4;
  background: #18242f;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: #C4A85C;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
a:hover { color: #d4bc76; text-decoration: underline; }

/* --- Focus states (keyboard accessibility) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
iframe:focus-visible {
  outline: 2px solid #C4A85C;
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.3;
  color: #f0f0f0;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #003E46;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  position: relative;
  height: 110px;
  transition: height 0.3s;
}

/* --- Compact header after scroll --- */
.site-header.scrolled .header-inner {
  height: 50px;
}
.site-header.scrolled .logo img {
  height: 42px;
  transition: height 0.3s;
}
.site-header.scrolled .logo-text {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s, width 0.3s;
}
.site-header.scrolled .main-nav {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  right: 240px;
}
.site-header.scrolled .main-nav a {
  padding: 6px 0.8em;
}
.site-header.scrolled .main-nav a.active {
  border-bottom: none;
}
.site-header.scrolled .lang-switch {
  top: 50%;
  transform: translateY(-50%);
}
.site-header.scrolled .header-social {
  top: 50%;
  transform: translateY(-50%);
}

/* --- Language toggle --- */
html[data-lang="en"] [data-tr] { display: none !important; }
html[data-lang="tr"] [data-en] { display: none !important; }

.lang-switch {
  display: flex;
  gap: 6px;
  position: absolute;
  top: 8px;
  right: 160px;
  transition: top 0.3s, transform 0.3s;
}
.lang-switch button {
  background: none;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  padding: 2px;
  line-height: 0;
  transition: border-color 0.3s;
  text-decoration: none;
}
.lang-switch button:hover { border-color: #C4A85C; }
html[data-lang="en"] .lang-switch button[data-set-lang="en"],
html[data-lang="tr"] .lang-switch button[data-set-lang="tr"] {
  border-color: #C4A85C;
}
.lang-switch svg { width: 24px; height: 16px; display: block; }

.logo {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo img { height: 95px; transition: height 0.3s; }

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 95px;
  transition: opacity 0.2s, width 0.3s;
  overflow: hidden;
}
.logo-text small {
  display: block;
  font-family: 'DM Serif Display', serif;
  color: #fff;
  font-size: 18px;
  line-height: 1.0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3px;
}
.logo-text span {
  display: block;
  font-family: 'DM Serif Display', serif;
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  position: absolute;
  bottom: 20px;
  right: 30px;
  transition: top 0.3s, bottom 0.3s, right 0.3s;
}

.main-nav ul {
  display: flex;
}

.main-nav a {
  display: block;
  padding: 10px 1.4em;
  color: #C4A85C;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s;
}
.main-nav li:last-child a { padding-right: 0; }

.main-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.main-nav a.active {
  color: #fff;
  border-bottom: 2px solid #C4A85C;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 8px;
  right: 30px;
  transition: top 0.3s, transform 0.3s;
}
.header-social svg {
  height: 22px; width: 22px;
  fill: #2AADAD;
  transition: fill 0.3s;
}
.header-social a:hover svg { fill: #35C2C2; }
.header-social a { text-decoration: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 420px;
  overflow: visible;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 18px 50px;
  background: #18242f;
  border-radius: 4px;
  text-align: center;
}

.hero-overlay h1 {
  color: #C4A85C;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.hero-overlay h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */

.section          { padding: 40px 0; }
.hero + main > .section:first-child { padding-top: 60px; }
.section--alt     { background: linear-gradient(to bottom, #18242f, #003E46); }
.section--alt + .section--alt {
  border-top: 1px solid rgba(196,168,92,0.15);
}

/* --- Utilities --- */
.text-center      { text-align: center; }
.mt-20            { margin-top: 20px; }
.mt-30            { margin-top: 30px; }

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #f0f0f0;
}


/* ============================================
   CARDS
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-body {
  padding: 30px 25px;
  text-align: center;
}
.card-body h3 {
  color: #2AADAD;
  margin-bottom: 12px;
}
.card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTENT BLOCK (centered text)
   ============================================ */

.content-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.content-block p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn:hover { text-decoration: none; }
.btn--primary {
  background: #2AADAD; color: #fff;
}
.btn--primary:hover {
  background: #35C2C2; color: #fff;
  box-shadow: 0 4px 15px rgba(24,137,150,0.35);
}

/* ============================================
   LINK CARDS (homepage teasers)
   ============================================ */

.link-card {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  min-height: 220px;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  text-decoration: none;
}
.link-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.link-card-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  padding: 20px;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.link-card-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================
   PHOTO GALLERY PAGE
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.gallery-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
  text-decoration: none;
}
.gallery-grid a:hover {
  transform: scale(1.02);
  text-decoration: none;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ============================================
   EVENT HIGHLIGHT
   ============================================ */

.event-highlight {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 2px solid #C4A85C;
  border-radius: 8px;
  padding: 40px 30px;
}
.event-highlight h3 {
  color: #C4A85C;
  margin-bottom: 15px;
}
.event-highlight p {
  color: #d4d4d4;
  font-size: 1.1rem;
}

/* ============================================
   CONCERT LISTING (rows)
   ============================================ */

.concert-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concert-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  color: #99aab5;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.concert-divider::before,
.concert-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,168,92,0.25);
}

.concert-row {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
}
.concert-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  text-decoration: none;
  border-color: rgba(196,168,92,0.3);
}
.concert-row img {
  width: 350px;
  min-height: 230px;
  object-fit: cover;
  flex-shrink: 0;
}
.concert-row-info {
  flex: 1;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concert-row-info h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.concert-row-info .concert-meta {
  color: #C4A85C;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: inline;
}
.concert-meta svg {
  width: 14px; height: 14px;
  fill: #C4A85C;
  vertical-align: middle;
  margin-right: 4px;
}
.concert-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #C4A85C;
  font-size: 0.9rem;
}
.concert-meta-line .sep {
  color: rgba(196,168,92,0.4);
}
.concert-row-info p {
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.7;
}
.concert-row .btn {
  align-self: flex-start;
}

/* --- Countdown --- */
.countdown {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}
.countdown-unit {
  text-align: center;
}
.countdown-unit span {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: #C4A85C;
  line-height: 1;
}
.countdown-unit small {
  font-size: 0.7rem;
  color: #99aab5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .concert-row { flex-direction: column; }
  .concert-row img { width: 100%; min-height: 200px; }
  .concert-row-info { padding: 20px; }
}

/* ============================================
   CONCERT PHOTO
   ============================================ */

.concert-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ============================================
   PHOTO GALLERY / SLIDER
   ============================================ */

@keyframes slidy {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }
  25%  { transform: translateX(-20%); }
  45%  { transform: translateX(-20%); }
  50%  { transform: translateX(-40%); }
  70%  { transform: translateX(-40%); }
  75%  { transform: translateX(-60%); }
  95%  { transform: translateX(-60%); }
  100% { transform: translateX(-80%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery .slider { animation: none; }
}

.gallery {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin: 30px 0;
}

.gallery .slider {
  display: flex;
  width: 500%;
  animation: 30s slidy infinite;
}
.gallery .slider figure {
  width: 20%;
  position: relative;
  flex-shrink: 0;
}
.gallery .slider img { width: 100%; }
.gallery .slider figcaption {
  position: absolute; bottom: 0;
  background: rgba(0,62,70,0.7);
  color: #fff; width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

/* ============================================
   VIDEO
   ============================================ */

.video-wrapper {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.video-wrapper video { width: 100%; display: block; }

/* ============================================
   STORY SECTIONS
   ============================================ */

.story-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.story-card h3 {
  color: #2AADAD;
  text-align: center;
  margin-bottom: 20px;
}
.story-card p {
  font-size: 1rem;
  line-height: 1.8;
}

.lang-label {
  color: #C4A85C;
  font-weight: 600;
  text-align: center;
  margin: 25px 0 10px;
}

.story-divider {
  width: 60px; height: 2px;
  background: #C4A85C;
  margin: 25px auto;
}

.story-ig {
  text-align: center;
  margin-top: 20px;
}
.story-ig a { text-decoration: none; }
.story-ig svg {
  height: 32px; width: 32px;
  fill: #2AADAD;
  transition: fill 0.3s;
}
.story-ig a:hover svg { fill: #35C2C2; }

/* ============================================
   PRESS
   ============================================ */

.press-item {
  margin-bottom: 50px;
  text-align: center;
}
.press-item img {
  max-width: 90%;
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.press-item .quote {
  font-style: italic;
  color: #C4A85C;
  font-size: 1.05rem;
  margin: 15px 0;
}

/* ============================================
   SONG NAV DROPDOWN
   ============================================ */

.song-nav {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 2px solid #C4A85C;
  display: flex;
  align-items: center;
  gap: 10px;
}
.song-nav select {
  flex: 1;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #f8f9fa;
}
.song-nav input[type="button"] {
  padding: 8px 20px;
  background: #2AADAD; color: #fff;
  border: none; border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; cursor: pointer;
  transition: background 0.3s;
}
.song-nav input[type="button"]:hover { background: #35C2C2; }

/* ============================================
   YOUTUBE CARD
   ============================================ */

.yt-embed {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.3);
  aspect-ratio: 16/9;
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
}


/* ============================================
   CONTACT
   ============================================ */

.contact-wrapper iframe {
  width: 100%; min-height: 540px;
  border: none; border-radius: 8px;
}

/* ============================================
   POSTER IMAGE
   ============================================ */

.poster-block {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.poster-block img { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #003E46;
  color: #fff;
  padding: 50px 0 20px;
  border-top: 2px solid #C4A85C;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { height: 80px; margin-bottom: 15px; }

.site-footer p {
  font-size: 14px;
  color: #99aab5;
}
.site-footer h4 {
  color: #C4A85C;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  color: #aab8c3;
  font-size: 14px;
  text-decoration: none;
}
.site-footer ul a:hover { color: #35C2C2; text-decoration: none; }

.footer-social { display: flex; gap: 10px; }
.footer-social svg {
  height: 32px; width: 32px;
  fill: #2AADAD;
  transition: fill 0.3s;
}
.footer-social a { text-decoration: none; }
.footer-social a:hover svg { fill: #35C2C2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: #C4A85C; }

.love-icon {
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }

  .header-inner {
    height: 80px;
  }

  .logo { left: 15px; }
  .logo img { height: 65px; }
  .logo-text { display: none; }
  .lang-switch { right: 55px; top: 50%; transform: translateY(-50%); }
  .site-header.scrolled .main-nav { right: 55px; }

  .mobile-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    bottom: auto;
    background: #003E46;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; }
  .main-nav a {
    padding: 15px 30px;
    line-height: normal;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .header-social { display: none; }

  .hero { min-height: 250px; }
  .hero-overlay { padding: 12px 25px; }
  .hero-overlay h1 { font-size: 1.2rem; letter-spacing: 1px; white-space: normal; }

  h2 { font-size: 1.5rem; }
  .section { padding: 30px 0; }
  .section-title { font-size: 1.2rem; margin-bottom: 15px; }

  .card-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social { justify-content: center; }
  .footer-logo { margin: 0 auto 15px; }

  .story-card { padding: 25px 20px; }

  .gallery .slider figcaption { font-size: 0.7rem; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .hero-overlay h1 { font-size: 1rem; }
  .logo img { height: 55px; }
  .container { padding: 0 15px; }
}
