/* ==========================================================================
   Super Adisyon - Ultra Minimal Under Construction Page
   Theme: Very Light Soft Turquoise & Spacious Clean Layout
   ========================================================================== */

:root {
  /* Color Palette - Extra Light Soft Turquoise */
  --bg-primary: #f5fcfb;
  --bg-surface: rgba(255, 255, 255, 0.88);
  
  --turquoise-100: #e6fbf7;
  --turquoise-200: #b2f5ea;
  --turquoise-300: #5eead4;
  --turquoise-400: #2dd4bf;
  --turquoise-500: #14b8a6;
  --turquoise-600: #0d9488;
  --turquoise-700: #0f766e;
  --turquoise-800: #115e59;
  
  --text-dark: #071918;
  --text-body: #284442;
  --text-muted: #597d7a;
  
  --border-subtle: rgba(20, 184, 166, 0.14);
  
  --shadow-sm: 0 4px 16px rgba(13, 148, 136, 0.03);
  --shadow-lg: 0 24px 60px rgba(13, 148, 136, 0.07);
  
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
}

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow-x: hidden;
}

/* Ambient Background Glow - Ultra Light & Soft */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.glow-orb-1 {
  top: -20%;
  left: -10%;
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  background: radial-gradient(circle, rgba(153, 246, 228, 0.6) 0%, transparent 70%);
}

.glow-orb-2 {
  bottom: -20%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  background: radial-gradient(circle, rgba(178, 245, 234, 0.5) 0%, transparent 70%);
}

/* Header */
.site-header {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.75rem 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Larger Logo Size */
.brand-logo-img {
  height: 68px;
  width: auto;
  max-height: 85px;
  object-fit: contain;
  display: block;
}

/* Language Switcher with Flags */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  box-shadow: var(--shadow-sm);
  gap: 2px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--text-dark);
}

.lang-btn.active {
  background: var(--turquoise-600);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(13, 148, 136, 0.22);
}

.flag-img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  display: inline-block;
  flex-shrink: 0;
}

/* Main Container - Expanded Width */
.main-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  z-index: 5;
}

.minimal-card {
  width: 100%;
  max-width: 1140px; /* Genişletilmiş İçerik Kartı */
  background: var(--bg-surface);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 4rem 4rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.22);
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--turquoise-700);
  margin-bottom: 2.25rem;
  letter-spacing: 0.6px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--turquoise-500);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background-color: var(--turquoise-400);
  opacity: 0.7;
  animation: pulseAnimation 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Typography */
.hero-title {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.gradient-text {
  background: linear-gradient(135deg, var(--turquoise-600) 0%, var(--turquoise-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 3rem;
}

.highlight-box {
  display: inline-block;
  background: var(--turquoise-100);
  color: var(--turquoise-800);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 8px;
}

/* Illustration Container - Larger & Wider */
.illustration-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  display: block;
}

/* Footer */
.site-footer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.75rem 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  z-index: 10;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--turquoise-700);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .site-header {
    padding: 1.75rem 1.25rem 0.5rem;
  }
  
  .brand-logo-img {
    height: 52px;
  }
  
  .minimal-card {
    padding: 2.75rem 1.5rem;
    border-radius: 24px;
  }
  
  .hero-title {
    font-size: 1.85rem;
    white-space: normal;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-bottom: 2rem;
  }
}
