@charset "utf-8";

/* ============================ */
/* RESET & BASE                 */
/* ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body { height: 100%;  
    overflow-x: hidden;}

body {
  color: #fff;
  hyphens: auto;
}

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

/* ============================ */
/* BACKGROUND                   */
/* ============================ */
.background , body.page-festiwave {
  min-height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(144, 238, 144, 0.12), transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(144, 238, 144, 0.0), transparent 40%),
    linear-gradient(135deg, #0a0a0a 0%, #0a0a0a 100%);
  background-blend-mode: screen;
}

/* ============================ */
/* NAVBAR                       */
/* ============================ */
.creative-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #7cf03d;
}

.menu-toggle { display: none; font-size: 28px; cursor: pointer; }

.creative-nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.creative-nav-links li a {
  font-size: 1.125rem;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  transition: 0.3s;
}

.creative-nav-links li a:hover {
  background: rgba(124,240,61,0.08);
  color: #7cf03d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(124,240,61,0.4);
}

.creative-nav-links li a.active {
  color: #7cf03d;
  font-weight: 600;
}

/* ============================ */
/* HOME SECTION                 */
/* ============================ */

.home {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 8rem 2rem 2rem 5rem;
}

.home-info {
  flex: 1 1 55%;
  max-width: 600px;
}

.home-info h1 { font-size: 3.5rem; }
.home-info h2 { font-size: 2rem; }
.home-info p { margin-top: 1.25rem; line-height: 1.6; }

.btn-sci {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.625rem 1.875rem;
  background: #7cf03d;
  border: 1px solid #7cf03d;
  color: #000;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover { background: transparent; color: #7cf03d; }

.sci a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #7cf03d;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #7cf03d;
  transition: 0.3s;
}

.sci a:hover { background: #7cf03d; color: #1f242d; }

/* ============================ */
/* IMAGE + CIRCLE               */
/* ============================ */
.home-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.circle-animation {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-animation img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
}

.circle-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.semi {
  stroke-dasharray: 314;
  animation: dashAnim 3s ease-in-out infinite;
}

.semi.bottom { animation-delay: 1.5s; }

@keyframes dashAnim {
  0% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: 314; }
  100% { stroke-dashoffset: 0; }
}

/* ============================ */
/* TYPEWRITER                   */
/* ============================ */
.animated-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  min-height: 2.2em;
  white-space: nowrap;
  background: linear-gradient(90deg,#fff,#7cf03d,#fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* GLOBAL CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #7cf03d; /* Neon-Grün */
  pointer-events: none;       /* Klicks passieren durch */
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
  z-index: 9999;
}

#typewriter {
  white-space: nowrap;     /* همیشه یک خط */
  overflow: hidden;        /* بیرون نزند */
  
  display: inline-block;
}

@media (max-width: 600px) {
  #typewriter {
    width: 100%;
    font-size: 1.2rem;
    white-space: normal;
  }
}
/* ============================ */
/* SMALL MOBILE */
/* ============================ */
@media (max-width: 480px) {

  .home-info h1 {
    font-size: 1.9rem;
  }

  .home-info h2 {
    font-size: 1.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .home-info p {
    font-size: 0.9rem;
  }
}
/* ============================ */
/* RESPONSIVE HOME SECTION       */
/* ============================ */
@media (max-width: 1100px) {
  .home { gap: 1rem; }
  .home-img { align-self: flex-start; }
}

@media (max-width: 791px) {
  .home {
    flex-direction: column; 
    gap: 1rem;
    padding: 6rem 1.5rem;
  }
  .home-img { order: -1; justify-content: flex-start; margin-bottom: 1rem; }
}

@media (max-width: 906px) and (min-width: 792px) {
  .home {
    flex-direction: row; 
    flex-wrap: nowrap;   
    gap: 1rem;
    padding: 6rem 2rem;
  }
  .home-info {
    flex: 1 1 55%;
    max-width: 600px;
  }
  .home-img {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .home {
    padding: 5rem 1.25rem 2rem;
  }
}


@media (max-width: 800px) {
  .menu-toggle { display: block; }
  .creative-nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(0,0,0,0.85);
    width: 100%;
    padding: 1.25rem;
    transition: 0.4s;
    border-radius: 0 0 20px 20px;
    z-index: 999;
  }
  .creative-nav-links.active { left: 0; }
  
}


/* ============================ */
/* PROJECTS / CONTAINER         */
/* ============================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}


.container > section {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  padding:1rem;
  background: transparent;
}

/* HERO */
.hero { text-align: left; }
.title {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
  color: var(--white);
}
.lead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 70ch;
}

/* MOCKUPS */
.mockups {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}
.mockup { display: flex; flex-direction: column; gap: .75rem; align-items: center; text-align: center; }

.mockup .bezel { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.6); }

.mockup.laptop .bezel {
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 -4px 10px rgba(0,0,0,0.04);
}

.mockup.phone .bezel { background: #0d0d0d; border-radius: 22px; }

.mockup .screen { display: block; width: 100%; height: auto; border-radius: 6px; background: var(--card); }

.mockup.laptop { max-width: 62vw; }
.mockup.laptop .screen { width: 820px; max-width: 100%; }
.mockup.phone { max-width: 22vw; }
.mockup.phone .screen { width: 220px; max-width: 100%; }

.mockup-caption { font-size: 0.9rem; color: var(--muted); }
.mockup-caption a { text-decoration: none; border-bottom: 2px solid transparent; }
.mockup-caption a:hover { border-bottom-color: #7cf03d; color: #fff; }

/* RESULT */
.result-title { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; color: var(--white); }
.result-text { font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 80ch; text-align: left; }
.result { margin-bottom: 3rem; }
/* RESPONSIVE PROJECTS */
@media (min-width: 1100px) {
  .container { gap: 1rem; }
  .mockup.laptop .screen { width: 920px; }
  .mockup.phone .screen { width: 260px; }
}

@media (max-width: 1099px) and (min-width: 700px) {
  .mockup.laptop .screen { width: 620px; }
  .mockup.phone .screen { width: 200px; }
}

@media (max-width: 900px) {
  .container { padding: 1.25rem; }
  .mockups { justify-content: center; gap: 1.25rem; }
  .mockup.laptop .bezel { padding: 0.9rem; }
  .mockup.laptop { max-width: 100%; }
  .mockup.phone { max-width: 40vw; }
}

@media (max-width: 600px) {
  .container { margin: 2rem auto; }
  .hero, .images-section .section-title, .result-text { text-align: center; }
  .lead { margin: 0 auto; }
  .mockups { flex-direction: column; align-items: center; }
  .mockup.laptop { max-width: 96%; }
  .mockup.phone { max-width: 46%; }
}

@media (max-width: 380px) {
  .mockup.phone { max-width: 62%; }
  .title { font-size: 1.6rem; }
}

/* ============================ */
/* Contact                      */
/* ============================ */


.contact {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  margin-top: 8rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #7cf03d;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: #bbb;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form .form-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #0f0f0f;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7cf03d;
}

/* دکمه اصلی */
.btn-contact {
  align-self: center;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  background: #7cf03d;
  border: none;
  color: #0a0a0a;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Hover */
.btn-contact:hover {
  background: #0a0a0a; border: 1px solid #7cf03d;
  color: #7cf03d;

}



/* لینک‌های تماس کنار هم */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1.5rem;
  color: #ddd;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

/* ریسپانسیو */
@media (max-width: 600px) {
  .contact-info { flex-direction: column; gap: 1rem; }
}



.impressum-container {
  position: relative;
  z-index: 10; /* über den Blasen */
  max-width: 800px;
  margin: 5rem auto;
  padding: 2rem;
  background: rgba(124, 240, 61, 0.05);
  border: 1px solid rgba(124, 240, 61, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  color: #ddd;
  font-family: 'Poppins', sans-serif;
}

#bubbleCanvas {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index: 1; /* unter dem Content */
}


/* Impressum Box */
.impressum-box {
  position: relative;
  z-index: 2; /* above canvas */
  max-width: 1000px;
  margin: 0 auto;
  top: 40%;
  transform: translateY(-50%);
 
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}


.impressum-box h1 {
  font-size: 2.2rem;
  color: #7cf03d;
  margin-bottom: 1.5rem;
}

.impressum-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.impressum-box a {
  color: #7cf03d;
  text-decoration: none;
  transition: 0.3s;
}

.impressum-box a:hover {
  text-decoration: underline;
  color: #fff;
}  
 

.head {
  text-align: center;
  padding: 4rem 1rem 0.5rem;
}

.head h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff; background: linear-gradient(90deg, #ffffff, #7cf03d97, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #7cf03d; /* رنگ متن */
}

.head p {
  max-width: 700px;
  margin: 1rem auto;
  color: var(--muted);
}


.phone-left {
  left: 50%;
  top: 10px;
  transform: translateX(-85%) rotateY(16deg) rotateZ(-1deg) scale(1.05);
  z-index: 1;
  animation: leftPhoneEnter 1.3s ease-out forwards;
}

@keyframes leftPhoneEnter {
  from { left: 20%; opacity: 0; }
  to   { left: 50%; opacity: 1; }
}

/* ============================ */
/* RECHTES HANDY — zentriert, leicht überlappend */
/* ============================ */

.phone-right {
  left: 30%;
  top: 40px;
  transform: translateX(-2%) rotateY(-6deg) rotateZ(3deg) scale(1.05);
  z-index: 2;
  animation: rightPhoneEnter 1.3s ease-out forwards;
  animation-delay: .25s;
}

@keyframes rightPhoneEnter {
  from { left: 80%; opacity: 0; }
  to   { left: 50%; opacity: 1; }
}


/* ============================ */
/* SECTION BOX                  */
/* ============================ */

.section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.section h2 {color: #7cf03d;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section h3 {
  color: #7cf03d;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

.section ul li::marker {
  color: #7cf03d;
}
.section p {
  color: #fff;
}
.section ul li {
  color: #fff; /* Text bleibt weiß */
}


/* ============================ */
/* FLOW IMAGE                   */
/* ============================ */

.flow-box {
  background: #0f0f0f;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--accent);
  font-family: monospace;
  margin-bottom: 1.5rem;
}

.flow-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

/* ============================ */
/* UI GALLERY SLIDER            */
/* ============================ */
.section .section-title { text-align: left; }

.ui-gallery {
  text-align: center;
}

.ui-gallery .section-title {color:#7cf03d;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.gallery-wrapper {
  position: relative;
  margin: auto;
}

.gallery-track {
  display: flex;
  justify-content: center; /* وسط‌چین کردن تصاویر */
  gap: 20px;
  transition: transform 0.4s ease;
  overflow: hidden; /* جلوگیری از بیرون‌زدن تصاویر */
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.phone-card {
  min-width: 260px;
  height: 520px;
  background: #0d0d0d;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  overflow: hidden;
}

.phone-card img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.gallery-track:hover .phone-card {
  opacity: 0.25;
  filter: blur(2px);
}

.gallery-track .phone-card:hover {
  transform: scale(1.35);
  opacity: 1;
  filter: blur(0);
  z-index: 20;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(124,240,61,0.25);
  border: 2px solid var(--accent);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--accent);
  color: #0a0a0a;
}

.prev { left: -25px; }
.next { right: -25px; }

.persona-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.persona-photo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
}
.persona-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0b0b0b;
  border: 3px solid #7cf03d;
  box-shadow: 
    0 0 0 5px rgba(255,255,255,0.12),
    0 0 45px rgba(124,240,61,0.6);
}

.persona-image { position: absolute; 
  top: 62%; left: 45%;
   transform: translate(-50%, -50%);
   width: 170px; /* leicht kleiner als Kreis für Abstand */
   height: 170px;
   object-fit: cover;
    border-radius: 50%;
    z-index: 2; }

/* Text block */
.persona-text {
  flex: 1;
  color: #fff;
  line-height: 1.7;
}

/* Headings */
.persona-text h3 {
  color: #7cf03d;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* List */
.persona-list {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 0;
}

.persona-list li {
  color: #7cf03d;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 600px) {
  .persona-layout {
    flex-direction: column;
    text-align: center;
  }

  .persona-photo-wrapper {
    margin-bottom: 1rem;
  }

  .persona-text {
    text-align: left;
  }
}

/* ============================ */
/* EMPATHY MAP – PRO VERSION    */
/* ============================ */
/* WRAPPER */
.empathy-wrapper {
  position: relative;
  max-width: 1000px;
  height: 420px;
  margin: 2rem auto 0;
}

/* ============================ */
/* CARDS                        */
/* ============================ */

.empathy-card {
  position: absolute;
  width: 380px;
  height: 160px;
  padding: 0 2.9rem 0 ;
  background: #0b0b0b;
  border-radius: 14px;
  text-align: left;
  z-index: 2;
  overflow: hidden;
}

/* GRADIENT STROKE */
.empathy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.8px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7cf03dc9, #ffffff, #7cf03db9);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.empathy-card h3 {
  color: #7cf03d;
  margin-bottom: 0.6rem;
}

.empathy-card li {
  color: #d5d5d5;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

/* POSITIONS */
.denkt  { top: 20px; left: 30px; }
.sieht  { top: 20px; right: 30px; }
.hoert  { bottom: 20px; left: 30px; }
.fuehlt { bottom: 20px; right: 30px; }

/* ============================ */
/* CENTER AVATAR                */
/* ============================ */

.empathy-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.avatar-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #0b0b0b;
  border: 3px solid #7cf03d;

  box-shadow:
    0 0 0 5px rgba(255,255,255,0.12),
    0 0 45px rgba(124,240,61,0.6);

  display: flex;
  justify-content: center;
  overflow: visible;
}

/* IMAGE LOWER + HAIR OUTSIDE */
.avatar-circle img {
  width: 220px;
  height: auto;
  position: relative;
  top: 26px; 
  left: -10px;
  z-index: 2;
}

/* ============================ */
/* DOTTED LINES                 */
/* ============================ */

.line {
  position: absolute;
  opacity: 0.4;
}

.line.vertical {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.5) 6px,
    transparent 6px,
    transparent 12px
  );
}

.line.horizontal {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.5) 6px,
    transparent 6px,
    transparent 12px
  );
}

/* ============================ */
/* RESPONSIVE                   */
/* ============================ */
@media (max-width: 900px) {
  .empathy-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .empathy-card {
    position: static;
    width: 90%;
    margin-bottom: 1rem;
  }

  .empathy-avatar {
    position: static;
    margin: 6rem 0  0 6rem; /* پایین‌تر از کارت‌ها */
  }

  .line {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .empathy-card {
    width: 95%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .avatar-circle {
    width: 150px;
    height: 150px;
  }

  .avatar-circle img {
    width: 130px;
    top: 20px;
    left: -5px;
  }
}

/* ============================ */
/* SECTION: DESIGNED PAGES      */
/* ============================ */

.section.designed-pages {
  padding: 0 0;
  color: #fff;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
 
  margin-bottom: 40px;
}

/* LIST */
.page-list {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  list-style: decimal inside;
  padding-left: 0;
}

/* COLOR PALETTES */
.color-palettes {
  display: flex;
  justify-content: flex-start; /* چپ‌چین کردن رنگ‌ها */
  gap: 40px;
  flex-wrap: wrap;
}
.palette {
  text-align: center;
}

.palette h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #FF69B4;
}

.swatches {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .color-palettes {
    gap: 20px;
  }

  .swatch {
    width: 32px;
    height: 32px;
  }
}

/* ============================ */
/* FESTIWAVE – HERO PHONES ONLY */
/* ============================ */

.page-festiwave .hero-phones {
  position: relative;
  height: 500px;
  margin-top: 30px;
}

.page-festiwave .hero-phones .phone {
  position: absolute;
  width: 300px;
  opacity: 0;
}

.page-festiwave .hero-phones .phone img {
  width: 100%;
  border-radius: 32px;
}

/* ============================
   Competitive Analysis Cards
============================ */
.competitive-analysis {

  padding: 40px 20px;
}

.competitive-analysis h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.comp-columns {
  display: flex;
  justify-content: center; /* وسط چین کردن ستون‌ها */
  gap: 20px; /* فاصله یکسان بین کادرها */
  flex-wrap: wrap; /* در موبایل و صفحه کوچک، کادرها به خط بعدی بروند */
}

.comp-box {
  position: relative; /* برای اینکه ::before روی کادر اعمال شود */
 
  border-radius: 14px;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  z-index: 0; /* متن روی استروک باشد */
  overflow: hidden; /* برای جلوگیری از بیرون زدن استروک */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Gradient Border */
.comp-box::before {
  content: "";
  position: absolute;
  inset: 0; /* می‌گیرد کل ابعاد کادر */
    padding: 0.8px; /* ضخامت استروک نازک‌تر */
  border-radius: 14px;
  background: linear-gradient(135deg, #00ff00, #ffffff, #00ff00); /* گرادینت دو رنگ سبز و سفید */
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1; /* پشت متن */
}
.comp-box h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.comp-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.comp-box ul li {
  margin-bottom: 10px;
}

/* Optional: Cursor größer bei Hover auf klickbaren Elementen */
a:hover ~ .cursor,
button:hover ~ .cursor {
  width: 30px;
  height: 30px;
  background-color: rgba(124, 240, 61, 0.4);
}
.skills-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  color: #7cf03d;
}

.skills-marquee .marquee-track {
  display: flex;
  gap: 30px;
  animation: marquee 20s linear infinite; /* Geschwindigkeit anpassen */
}

.skills-marquee span {
  display: inline-block;
}

/* Endlos-Animation von rechts nach links */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause beim Hover */
.skills-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .skills-marquee {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .skills-marquee {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .skills-marquee {
    font-size: 1.4rem;
    gap: 15px;
  }
}


/* ============================ */
/* FOOTER */
.footer {
  background: #0a0a0a;
  color: #7cf03d;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  border-top: 1px solid rgba(124, 240, 61, 0.2);
}

.footer a {
  color: #7cf03d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

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


.footer .divider {
  display: inline-block;
  width: 1px;           /* dicke der Linie */
  height: 16px;         /* höhe der Linie */
  background: rgba(124, 240, 61, 0.5); /* Farbe der Linie */
  margin: 0 10px;       /* Abstand zu den Links */
}



#clock {
  font-weight: bold;
  color: #fff;
  font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer .divider {
    width: 1px; 
  }
}

