/* ================================================
   EVENT PAGE STYLES - Index Teması ile Uyumlu
   ================================================ */

/* Hero Section */
.event-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url('../assets/mba-event-bg2.jpg') center/cover no-repeat, linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
  overflow: hidden;
}

.event-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
  z-index: 0;
}

/* MBA Logo Watermark */
.event-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  height: 80%;
  background: url('../assets/mba-logo.png') center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

@keyframes subtleGlow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

.event-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0 6rem;
}

.event-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Brand Logo */
.event-brand-logo {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.event-brand-logo img,
.event-brand-logo svg {
  max-width: 550px;
  width: 100%;
  height: auto;
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.event-brand-logo img:hover,
.event-brand-logo svg:hover {
  transform: scale(1.05);
}



/* Page Title */
.page-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 1.5rem 0;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #D9D9D9;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Badge - Index ile aynı stil */
.event-page .section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(217, 217, 217, 0.08);
  border: 1px solid rgba(217, 217, 217, 0.15);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #D9D9D9;
  margin-bottom: 16px;
  font-family: 'Titillium Web', sans-serif;
}

/* Features Section */
.event-features {
  padding: 6rem 0;
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
  position: relative;
}

.event-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 217, 217, 0.1), transparent);
}

/* 3D Atmospheric Canvas */
.event-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 4rem;
}

.event-features .section-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section-description {
  color: #D9D9D9;
  opacity: 0.7;
  font-size: 1.125rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Feature Card - Index temasına uygun + Numbers */
.feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(35, 35, 35, 0.4));
  border: 1px solid rgba(217, 217, 217, 0.08);
  border-radius: 0;
  padding: 2.5rem 2rem;
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

/* Feature Number */
.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(217, 217, 217, 0.03);
  line-height: 1;
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.feature-card:hover .feature-number {
  color: rgba(217, 217, 217, 0.06);
  transform: scale(1.1);
}

/* Geometric Line */
.card-geometric-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D9D9D9, rgba(217, 217, 217, 0.2));
  transition: width 800ms cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.feature-card:hover .card-geometric-line {
  width: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #D9D9D9, rgba(217, 217, 217, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.7), rgba(26, 26, 26, 0.5));
  border-color: rgba(217, 217, 217, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000, #1A1A1A);
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #232323, #3A3A3A);
  transform: rotate(45deg) scale(1.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: #FFFFFF;
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover .feature-icon svg {
  transform: rotate(-45deg);
}

.feature-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.feature-description {
  color: #D9D9D9;
  opacity: 0.75;
  line-height: 1.7;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

/* Stats Section */
.event-stats {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.event-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 217, 217, 0.1), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(35, 35, 35, 0.3));
  border: 1px solid rgba(217, 217, 217, 0.08);
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.5), rgba(26, 26, 26, 0.4));
  border-color: rgba(217, 217, 217, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.stat-geometric-frame {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(217, 217, 217, 0.1);
  transform: scale(0.95);
  opacity: 0;
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.stat-item:hover .stat-geometric-frame {
  opacity: 1;
  transform: scale(1);
}

.stat-number {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
}

.stat-plus {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(217, 217, 217, 0.5);
  display: inline-block;
  margin-left: 0.25rem;
}

.stat-label {
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(217, 217, 217, 0.7);
  text-transform: uppercase;
  margin-top: 1rem;
}

/* CTA Section - Index temasına uygun */
.event-cta {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.event-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(1200px 800px at 50% 50%, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cta-content p {
  font-size: 1.125rem;
  color: #D9D9D9;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: 1.5px solid rgba(217, 217, 217, 0.2);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 217, 217, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  border-color: rgba(217, 217, 217, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-button span,
.cta-button svg {
  position: relative;
  z-index: 1;
}

.cta-button svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Back Link - all-projects ile aynı */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(217, 217, 217, 0.7);
  text-decoration: none;
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-link:hover {
  color: #FFFFFF;
  transform: translateX(-4px);
}

.back-link svg {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-link:hover svg {
  transform: translateX(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .event-hero-overlay {
    padding: 6rem 0 4rem;
  }

  .page-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .page-subtitle {
    font-size: 1.125rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-features,
  .event-stats,
  .event-cta {
    padding: 4rem 0;
  }

  .cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2rem);
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: clamp(1.8rem, 5vw, 2rem);
  }

  .event-brand-logo img,
  .event-brand-logo svg {
    max-width: 320px;
  }

  .feature-number {
    font-size: 48px;
    top: 16px;
    right: 16px;
  }
}