/* Custom premium styles for bursadjacademy.com */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Pacifico&display=swap');

:root {
  --background: #08080c;
  --foreground: #f4f4f7;
  --accent: #e52964;
  --accent-rgb: 229, 41, 100;
  --accent-glow: rgba(229, 41, 100, 0.15);
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* Cursive/Handwritten Font Class */
.cursive-text {
  font-family: 'Pacifico', cursive;
  color: #f472b6;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(229, 41, 100, 0.3);
  margin-top: 0.5rem;
}

/* Glassmorphism */
.glass {
  background: rgba(13, 13, 23, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-hover {
  transition: all 0.3s ease;
}

.glass-hover:hover {
  background: rgba(13, 13, 23, 0.8);
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 0 25px var(--accent-glow);
  transform: translateY(-4px);
}

/* Gradients */
.text-gradient {
  background: linear-gradient(135deg, #f472b6 0%, #e52964 50%, #9f1239 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* Dynamic Menu Dropdown styling */
nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(13, 13, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.nav-dropdown a:hover {
  background: rgba(229, 41, 100, 0.1);
  color: #e52964;
}

.nav-btn {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.1);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Hero Multi-Slider Styles */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-media img, .slide-media video, .slide-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.7);
  border: 0;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  z-index: 5;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(229, 41, 100, 0.4);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(229, 41, 100, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Slider Bullets Navigation */
.slider-bullets {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slide-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.slide-bullet:hover, .slide-bullet.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(229, 41, 100, 0.5);
  transform: scale(1.1);
}

/* Photo Gallery Item styling */
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.25rem;
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: transparent;
}

.slider-arrow-prev {
  left: 2rem;
}

.slider-arrow-next {
  right: 2rem;
}

/* Sections General */
section {
  padding: 6rem 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Custom Grids for side-by-side elements */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* About Section */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #f472b6;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-radius: 1.25rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Albums & Audio */
.bg-darker {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.player-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.player-img {
  width: 120px;
  height: 120px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.player-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.player-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.player-info p {
  color: rgba(255, 255, 255, 0.5);
}

.player-platforms {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.platform-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.platform-spotify {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.platform-spotify:hover {
  background: rgba(16, 185, 129, 0.25);
}

.platform-soundcloud {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.platform-soundcloud:hover {
  background: rgba(249, 115, 22, 0.25);
}

/* Events (Başvuru Tarihleri) */
.event-card {
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.event-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.05);
}

.event-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  justify-content: space-between;
}

.event-date {
  font-size: 0.75rem;
  color: #f472b6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.event-loc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.event-btn {
  text-align: center;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.event-card:hover .event-btn {
  background: var(--accent);
  border-color: transparent;
}

/* News / Blog (Bizden Haberler) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.news-img {
  width: 100%;
  height: 180px;
  position: relative;
  flex-shrink: 0;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.news-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: #f472b6;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-form {
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input, textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: #fff;
  outline: none;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.2);
}

textarea {
  resize: none;
}

.form-btn {
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background: #be123c;
}

/* Photo Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Dynamic Responsive Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
}
.video-wrapper iframe, .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card {
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.video-card h3 {
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
select {
  cursor: pointer;
}

/* Comprehensive Footer */
footer {
  padding: 5rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(13, 13, 23, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  display: inline-block;
  align-self: flex-start;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding: 2rem 2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* WhatsApp Floating Widget (Sol Alt) */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-wa 2s infinite;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Article Lightbox Modal */
.article-modal {
  display: none;
  position: fixed;
  z-index: 1100;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.article-modal-content {
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
}

.article-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.article-modal-close:hover {
  color: #fff;
}

.article-modal-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.article-modal-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-modal-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  display: block;
}

.article-modal-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  white-space: pre-line;
}

/* Event Detail Lightbox Modal (YENİ) */
.event-modal {
  display: none;
  position: fixed;
  z-index: 1100;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.event-modal-content {
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
}

.event-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.event-modal-close:hover {
  color: #fff;
}

.event-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.event-modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-modal-date {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.event-modal-loc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.event-modal-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s;
  cursor: pointer;
}

.event-modal-btn:hover {
  background: #be123c;
}

/* Footer Social Icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--accent);
  border-color: transparent;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Responsive Grid / Nav */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #08080c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
  }
  
  nav.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .grid-2, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .grid-4, .grid-5, .news-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    gap: 1rem;
  }
  
  .player-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .whatsapp-widget {
    bottom: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
  }
}

/* Workshop Lightbox Modal Styles */
.workshop-modal {
  display: none;
  position: fixed;
  z-index: 1150;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.workshop-modal-content {
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
}

.workshop-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.25rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.workshop-modal-close:hover {
  color: #fff;
}

.workshop-modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.workshop-modal-title {
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.workshop-modal-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.workshop-modal-actions {
  display: flex;
  gap: 1rem;
}

.workshop-modal-btn {
  flex: 1;
  text-align: center;
  padding: 0.9rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
}

.workshop-modal-btn-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.workshop-modal-btn-info:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.workshop-modal-btn-apply {
  background: var(--accent);
  color: #fff;
}

.workshop-modal-btn-apply:hover {
  background: #be123c;
}

/* Course Dates custom card styling (Overlay design) */
.course-date-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  display: block;
}

.course-date-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.course-date-card:hover .course-date-bg {
  transform: scale(1.08);
}

.course-date-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.course-date-card:hover .course-date-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.course-date-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
  margin: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.course-date-card:hover .course-date-title {
  color: var(--accent);
  transform: scale(1.05);
}

/* Floating Widgets Modülü (Sol Sosyal Bar, Sağ Dikey Buton, Sağ Alt Arama) */
.left-social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.left-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(8, 8, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-radius: 0 0.8rem 0.8rem 0;
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.left-social-bar a:hover {
  width: 60px;
  padding-left: 0.6rem;
  background: #e52964;
  border-color: rgba(229, 41, 100, 0.4);
  box-shadow: 0 4px 15px rgba(229, 41, 100, 0.25);
}

.right-apply-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.right-apply-btn a {
  display: block;
  background: #e52964;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 1.5rem 0.65rem;
  border-radius: 0.8rem 0 0 0.8rem;
  text-decoration: none;
  box-shadow: -4px 4px 15px rgba(229, 41, 100, 0.25);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.right-apply-btn a:hover {
  background: #fff;
  color: #e52964;
  padding-right: 0.9rem;
}

.phone-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.phone-widget::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: phone-pulsing 1.8s infinite;
}
@keyframes phone-pulsing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.phone-widget:hover {
  transform: scale(1.1);
  background: #fff;
  color: #10b981;
}

@media (max-width: 768px) {
  .left-social-bar {
    display: none; /* Hide left floating bar on tiny screens to avoid overlaps */
  }
}
