/*
Theme Name: Betin Gunes Multilang theme
Theme URI: https://betingunes.com
Author: Levent Saatci
Description: A minimalist, high-performance multi-language theme for Betin Gunes featuring video backgrounds and a custom section-based layout. FULLY MOBILE RESPONSIVE
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: betingunes-theme
*/

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

body {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* clean white & dark with institutional red accent */
:root {
  --bg-white:      #ffffff;
  --surface-light: #f4f4f2;
  --card-bg:       rgba(255, 255, 255, 0.95);
  --accent:        #b90c12;
  --accent-dark:   #8a0a0e;
  --text-dark:     #1a1a1a;
  --text-muted:    #666666;
  --border-dim:    rgba(0, 0, 0, 0.1);
  --border-accent: rgba(185, 12, 18, 0.2);
}

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

/* ========== MOBILE-FIRST NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent);
  padding: 0.75rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
}

/* Mobile menu button (hamburger) */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* Navigation links - hidden on mobile by default */
.nav-links {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.99);
  margin-top: 0.75rem;
  border-top: 1px solid var(--border-dim);
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Language dropdown on mobile */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}

.lang-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  min-width: 50px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.12);
  z-index: 1002;
  border-radius: 4px;
  border: 1px solid var(--border-dim);
}

.lang-content a {
  padding: 10px;
  display: block;
  text-align: center;
  color: var(--text-dark);
}

.lang-content a:hover {
  background-color: var(--surface-light);
}

.lang-dropdown:hover .lang-content {
  display: block;
}

.lang-dropdown img {
  width: 24px;
  height: auto;
  display: block;
  border-radius: 3px;
}

/* Desktop navigation */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    width: auto;
    flex-direction: row;
    background: transparent;
    border-top: none;
    margin-top: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-flex {
    justify-content: center;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0;
  }

  .container {
    padding: 0 24px;
  }
}

/* Hero Section - Mobile first */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 16px 40px;
}

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

/* darker overlay so white text stays readable over video */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero-content {
  z-index: 1;
  width: 100%;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 1.8rem;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 5rem;
    letter-spacing: -2px;
  }

  .hero-sub {
    font-size: 1.2rem;
  }
}

/* Sections - mobile first */
section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-dim);
  background: var(--bg-white);
}

section:nth-child(even) {
  background: var(--surface-light);
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: var(--text-dark);
  padding: 0 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 680px;
  margin-bottom: 2rem;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* About area - mobile first */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  padding: 0 16px;
}

.about-text {
  flex: 2;
  width: 100%;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: #333333;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.95rem;
}

.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--accent-dark);
  margin: 1.5rem 0;
}

.badge-card {
  flex: 1;
  background: var(--surface-light);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-dim);
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    gap: 3rem;
  }

  .quote-block {
    font-size: 1.2rem;
  }
}

/* Video grid - mobile first */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 0 16px;
}

.video-card {
  background: var(--surface-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-dim);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: var(--border-accent);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  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: 0.8rem 1rem 1rem;
}

.video-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.video-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 550px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Spotify section - mobile first */
.spotify-wrapper {
  background: var(--surface-light);
  border-radius: 8px;
  border: 1px solid var(--border-dim);
  padding: 1.2rem;
  margin: 1rem 16px;
}

.spotify-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.spotify-item {
  flex: 1;
  min-width: auto;
  width: 100%;
  text-align: center;
}

.spotify-item iframe {
  width: 100%;
  max-width: 100%;
}

.spotify-item p {
  color: var(--text-dark);
  font-size: 0.85rem;
}

.music-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--accent);
}

@media (min-width: 768px) {
  .spotify-wrapper {
    padding: 1.8rem;
  }

  .spotify-row {
    flex-direction: row;
  }

  .spotify-item {
    text-align: left;
  }
}

/* Concerts Section - mobile first */
.concerts-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.concert-group {
  border-bottom: 1px solid var(--border-dim);
  padding-bottom: 15px;
}

.concert-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.concert-column.date {
  width: auto;
  text-align: left;
  border-right: none;
}

.concert-column.date .day {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-right: 8px;
  color: var(--text-dark);
}

.concert-column.date .month {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--accent);
}

.concert-column.title {
  flex-grow: 1;
  padding-left: 0;
}

.concert-column.title h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.concert-column.title .location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.concert-column.time {
  width: auto;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.85rem;
}

.event-details-btn {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s;
  background: rgba(185, 12, 18, 0.08);
}

.event-details-btn:hover {
  background: var(--accent);
  color: #fff;
}

.concert-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.concert-group.active .concert-content {
  max-height: 800px;
}

.content-inner {
  padding: 0 0 1.5rem 0;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.concert-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-ticket {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-ticket:hover {
  background: var(--accent-dark);
}

@media (min-width: 600px) {
  .concert-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .concert-column.date {
    width: 100px;
    text-align: center;
    border-right: 1px solid var(--border-dim);
  }

  .concert-column.date .day {
    display: block;
    font-size: 1.8rem;
    margin-right: 0;
  }

  .concert-column.title {
    padding-left: 1.5rem;
    flex: 2;
  }

  .concert-column.time {
    width: 100px;
    text-align: center;
  }

  .content-inner {
    padding: 0 0 1.5rem 0;
  }

  .concert-links {
    flex-direction: row;
  }

  .btn-ticket {
    display: inline-block;
    width: auto;
  }
}

/* Socials section - mobile first */
.socials-page-container {
  background-color: var(--surface-light);
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 16px;
}

.socials-title {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.social-section {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.section-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.icon-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.icon-grid a {
  color: var(--text-dark);
  font-size: 1.8rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-grid a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.social-separator {
  width: 60px;
  height: 1px;
  background-color: var(--border-dim);
  margin: 20px 0 40px;
}

@media (min-width: 768px) {
  .socials-title {
    font-size: 2rem;
  }

  .icon-grid {
    gap: 30px;
  }

  .icon-grid a {
    font-size: 2.2rem;
  }
}

/* Contact card - mobile first */
.contact-card {
  background: var(--surface-light);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border-dim);
  text-align: center;
  margin: 0 16px;
}

.btn-outline-light {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  text-decoration: none;
  transition: 0.2s;
}

.btn-outline-light:hover {
  background: var(--accent);
  color: #fff;
}

/* Footer - mobile first */
.footer {
  background: #1a1a1a;
  padding: 2rem 16px;
  text-align: center;
  font-size: 0.7rem;
  color: #999999;
  border-top: 3px solid var(--accent);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

hr {
  border-color: var(--border-dim);
  margin: 1rem 0;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}