/**
 * 3D Sanat Atölyesi - Coming Soon
 * Logo renkleri: lacivert #1e3a6b, turkuaz #4dc4d9, turuncu #ee7a3c, mor #7b83c9
 */

:root {
  --c-navy: #1e3a6b;
  --c-navy-dark: #142647;
  --c-teal: #4dc4d9;
  --c-orange: #ee7a3c;
  --c-purple: #7b83c9;
  --c-text: #1c2b4a;
  --c-muted: #5a6a85;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--c-text);
  margin: 0;
  overflow-x: hidden;
}

a {
  color: var(--c-navy);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--c-orange);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--c-teal);
  border-top-color: var(--c-orange);
  border-bottom-color: var(--c-orange);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero Section (Coming Soon)
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #eef4fb 45%, #dfeaf7 100%);
  overflow: hidden;
}

/* Renkli arka plan blur şekilleri (logo renkleri) */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: var(--c-teal);
  top: -120px;
  left: -120px;
  animation: float 12s ease-in-out infinite;
}

.shape-2 {
  width: 360px;
  height: 360px;
  background: var(--c-orange);
  bottom: -100px;
  right: -80px;
  animation: float 14s ease-in-out infinite reverse;
}

.shape-3 {
  width: 260px;
  height: 260px;
  background: var(--c-navy);
  top: 40%;
  right: 10%;
  opacity: 0.25;
  animation: float 16s ease-in-out infinite;
}

.shape-4 {
  width: 300px;
  height: 300px;
  background: var(--c-purple);
  bottom: 10%;
  left: 8%;
  opacity: 0.35;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.08);
  }
}

#hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

#hero .logo {
  width: 220px;
  max-width: 60vw;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(30, 58, 107, 0.18));
}

.badge-soon {
  display: inline-block;
  background: linear-gradient(90deg, var(--c-orange), var(--c-teal));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(238, 122, 60, 0.25);
}

#hero h1 {
  margin: 0 0 18px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(
    90deg,
    var(--c-navy) 0%,
    var(--c-teal) 60%,
    var(--c-orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-navy); /* fallback */
}

.tagline {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: var(--c-muted);
  margin: 0 auto 22px;
  max-width: 640px;
  line-height: 1.5;
}

.tagline strong {
  color: var(--c-navy);
}

.services-line {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--c-navy);
  margin: 10px 0 30px;
}

.services-line .typed {
  color: var(--c-orange) !important;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.typed-cursor {
  color: var(--c-teal);
}

/* Sosyal linkler */
#hero .social-links {
  margin: 20px 0 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

#hero .social-links a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--c-navy), var(--c-teal));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(30, 58, 107, 0.25);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

#hero .social-links a:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, var(--c-orange), var(--c-teal));
  box-shadow: 0 12px 24px rgba(238, 122, 60, 0.35);
}

.footer-note {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #hero h1 {
    font-size: 34px;
  }
  .tagline {
    font-size: 16px;
  }
  .services-line {
    font-size: 17px;
  }
  #hero .logo {
    width: 160px;
  }
  .shape {
    filter: blur(50px);
  }
}
