/*
Theme Name: Codespring Studio
Description: Ein modernes, dynamisches WordPress Theme für Codespring Studio mit Fokus auf Webdesign, Performance und kreativen Lösungen.
Version: 1.0
Author: Codespring Studio
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
  --brand-pink: #e042cc;
  --brand-dark: #0a0a0a;
  --brand-light: #f4f4f5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --indigo-500: #6366f1;
  --blue-500: #3b82f6;
  --pink-600: #db2777;
  --black: #000000;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--brand-light);
  color: #1e293b;
  transition: background-color 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark {
  background-color: var(--brand-dark);
  color: var(--white);
}

::selection {
  background-color: var(--brand-pink);
  color: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.font-display {
  font-family: "Syne", sans-serif;
}

.font-sans {
  font-family: "Inter", sans-serif;
}

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

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Display */
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}

/* Flexbox */
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.flex-grow {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}

/* Grid */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.auto-rows-300px {
  grid-auto-rows: 300px;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\:row-span-2 {
    grid-row: span 2 / span 2;
  }
  .md\:flex {
    display: flex;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:hidden {
    display: none;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:block {
    display: block;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-64 {
    width: 16rem;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

/* Spacing */
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}

.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}

.m-0 {
  margin: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Sizing */
.w-full {
  width: 100%;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-2 {
  width: 0.5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-20 {
  width: 5rem;
}
.h-px {
  height: 1px;
}
.h-1 {
  height: 0.25rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-screen {
  height: 100vh;
}
.min-h-screen {
  min-height: 100vh;
}
.max-w-xs {
  max-width: 20rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}

/* Positioning */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.top-2 {
  top: 0.5rem;
}
.top-4 {
  top: 1rem;
}
.top-6 {
  top: 1.5rem;
}
.top-1\/2 {
  top: 50%;
}
.right-6 {
  right: 1.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-10 {
  bottom: 2.5rem;
}
.left-4 {
  left: 1rem;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

/* Colors */
.text-brand-pink {
  color: var(--brand-pink);
}
.text-white {
  color: var(--white);
}
.text-black {
  color: var(--black);
}
.text-gray-300 {
  color: var(--gray-300);
}
.text-gray-400 {
  color: var(--gray-400);
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-gray-600 {
  color: var(--gray-600);
}
.text-gray-700 {
  color: var(--gray-700);
}
.text-gray-900 {
  color: var(--gray-900);
}
.text-slate-900 {
  color: #0f172a;
}

.bg-brand-pink {
  background-color: var(--brand-pink);
}
.bg-brand-dark {
  background-color: var(--brand-dark);
}
.bg-brand-light {
  background-color: var(--brand-light);
}
.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}
.bg-gray-50 {
  background-color: var(--gray-50);
}
.bg-gray-100 {
  background-color: var(--gray-100);
}
.bg-gray-200 {
  background-color: var(--gray-200);
}
.bg-gray-800 {
  background-color: var(--gray-800);
}
.bg-gray-900 {
  background-color: var(--gray-900);
}

/* Dark Mode Colors */
.dark .text-white {
  color: var(--white);
}
.dark .text-gray-300 {
  color: var(--gray-300);
}
.dark .text-gray-400 {
  color: var(--gray-400);
}
.dark .bg-brand-dark {
  background-color: var(--brand-dark);
}
.dark .bg-black {
  background-color: var(--black);
}
.dark .bg-gray-800 {
  background-color: var(--gray-800);
}
.dark .bg-gray-900 {
  background-color: var(--gray-900);
}
.dark .border-gray-800 {
  border-color: var(--gray-800);
}

/* Background Opacity */
.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-white\/50 {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-black\/80 {
  background-color: rgba(0, 0, 0, 0.8);
}
.bg-black\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}
.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}
.bg-brand-pink\/10 {
  background-color: rgba(224, 66, 204, 0.1);
}
.bg-brand-pink\/20 {
  background-color: rgba(224, 66, 204, 0.2);
}
.bg-brand-pink\/30 {
  background-color: rgba(224, 66, 204, 0.3);
}
.bg-brand-pink\/50 {
  background-color: rgba(224, 66, 204, 0.5);
}

/* Borders */
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-6 {
  border-width: 6px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-gray-200 {
  border-color: var(--gray-200);
}
.border-gray-300 {
  border-color: var(--gray-300);
}
.border-gray-700 {
  border-color: var(--gray-700);
}
.border-gray-800 {
  border-color: var(--gray-800);
}
.border-brand-pink {
  border-color: var(--brand-pink);
}
.border-white {
  border-color: var(--white);
}
.border-current {
  border-color: currentColor;
}
.border-transparent {
  border-color: transparent;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-\[2rem\] {
  border-radius: 2rem;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow-pink-500\/30 {
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}
.shadow-pink-500\/25 {
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.25);
}
.shadow-brand-pink\/25 {
  box-shadow: 0 10px 15px -3px rgba(224, 66, 204, 0.25);
}
.shadow-brand-pink\/30 {
  box-shadow: 0 10px 15px -3px rgba(224, 66, 204, 0.3);
}
.shadow-brand-pink\/10 {
  box-shadow: 0 10px 15px -3px rgba(224, 66, 204, 0.1);
}

/* Effects */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}
.backdrop-blur-\[2px\] {
  backdrop-filter: blur(2px);
}
.opacity-0 {
  opacity: 0;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.opacity-100 {
  opacity: 1;
}
.grayscale {
  filter: grayscale(100%);
}
.grayscale-0 {
  filter: grayscale(0);
}

/* Transforms */
.scale-100 {
  transform: scale(1);
}
.scale-105 {
  transform: scale(1.05);
}
.scale-110 {
  transform: scale(1.1);
}
.scale-\[0\.98\] {
  transform: scale(0.98);
}
.translate-x-1 {
  transform: translateX(0.25rem);
}
.translate-x-4 {
  transform: translateX(1rem);
}
.translate-y-0 {
  transform: translateY(0);
}
.translate-y-2 {
  transform: translateY(0.5rem);
}
.translate-y-4 {
  transform: translateY(1rem);
}
.translate-y-10 {
  transform: translateY(2.5rem);
}
.-translate-x-2 {
  transform: translateX(-0.5rem);
}
.-translate-x-1\/2 {
  transform: translateX(-50%);
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}
.rotate-0 {
  transform: rotate(0deg);
}
.-rotate-6 {
  transform: rotate(-6deg);
}

/* Transitions */
.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}
.cursor-default {
  cursor: default;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}

/* Object Fit */
.object-cover {
  object-fit: cover;
}

/* Aspect Ratio */
.aspect-square {
  aspect-ratio: 1 / 1;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}
.aspect-\[4\/5\] {
  aspect-ratio: 4 / 5;
}
.aspect-\[9\/16\] {
  aspect-ratio: 9 / 16;
}
.aspect-\[16\/10\] {
  aspect-ratio: 16 / 10;
}

/* Whitespace */
.whitespace-nowrap {
  white-space: nowrap;
}

/* Select */
.select-none {
  user-select: none;
}
.pointer-events-none {
  pointer-events: none;
}

/* Hover States */
.hover\:bg-gray-50:hover {
  background-color: var(--gray-50);
}
.hover\:bg-gray-100:hover {
  background-color: var(--gray-100);
}
.hover\:bg-pink-600:hover {
  background-color: var(--pink-600);
}
.hover\:bg-brand-pink:hover {
  background-color: var(--brand-pink);
}
.hover\:text-brand-pink:hover {
  color: var(--brand-pink);
}
.hover\:text-white:hover {
  color: var(--white);
}
.hover\:scale-105:hover {
  transform: scale(1.05);
}
.hover\:scale-110:hover {
  transform: scale(1.1);
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:grayscale-0:hover {
  filter: grayscale(0);
}
.hover\:border-brand-pink\/50:hover {
  border-color: rgba(224, 66, 204, 0.5);
}
.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Group Hover */
.group:hover .group-hover\:text-brand-pink {
  color: var(--brand-pink);
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:opacity-60 {
  opacity: 0.6;
}
.group:hover .group-hover\:opacity-40 {
  opacity: 0.4;
}
.group:hover .group-hover\:grayscale-0 {
  filter: grayscale(0);
}
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}
.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}
.group:hover .group-hover\:translate-y-0 {
  transform: translateY(0);
}
.group:hover .group-hover\:translate-y-4 {
  transform: translateY(1rem);
}
.group:hover .group-hover\:-translate-x-2 {
  transform: translateX(-0.5rem);
}
.group:hover .group-hover\:w-full {
  width: 100%;
}

/* Active States */
.active\:scale-95:active {
  transform: scale(0.95);
}

/* Focus States */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:border-brand-pink:focus {
  border-color: var(--brand-pink);
}
.focus\:ring-1:focus {
  box-shadow: 0 0 0 1px var(--brand-pink);
}
.focus\:ring-brand-pink:focus {
  box-shadow: 0 0 0 1px var(--brand-pink);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-pink);
}

/* Masked Image */
.masked-image {
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* Gradient Text */
.text-transparent {
  color: transparent;
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.from-brand-pink {
  --tw-gradient-from: var(--brand-pink);
  --tw-gradient-to: rgba(224, 66, 204, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-purple-500 {
  --tw-gradient-to: rgba(168, 85, 247, 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(168, 85, 247, 1),
    var(--tw-gradient-to);
}

.to-purple-600 {
  --tw-gradient-to: rgba(147, 51, 234, 1);
}

.to-indigo-500 {
  --tw-gradient-to: rgba(99, 102, 241, 1);
}

.from-transparent {
  --tw-gradient-from: transparent;
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-gray-100\/90 {
  --tw-gradient-to: rgba(243, 244, 246, 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(243, 244, 246, 0.9),
    var(--tw-gradient-to);
}

.to-gray-100 {
  --tw-gradient-to: rgba(243, 244, 246, 1);
}

.from-black {
  --tw-gradient-from: #000000;
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/80 {
  --tw-gradient-from: rgba(0, 0, 0, 0.8);
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* WordPress Specific */
.wp-block-group {
  margin-bottom: 2rem;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: var(--brand-pink);
}

/* Lists */
ul {
  list-style: disc;
  padding-left: 1.25rem;
}

/* Forms */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Buttons */
button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   DARK MODE ICON VISIBILITY
   ============================================ */

.dark-mode-icon-sun {
  display: none;
}

.dark-mode-icon-moon {
  display: block;
}

.dark .dark-mode-icon-sun {
  display: block !important;
}

.dark .dark-mode-icon-moon {
  display: none !important;
}

/* Ensure icons are properly sized */
.dark-mode-icon-sun,
.dark-mode-icon-moon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Dark mode modifier classes (Tailwind-style) */
.hidden.dark\:block {
  display: none;
}

.dark .hidden.dark\:block {
  display: block;
}

.block.dark\:hidden {
  display: block;
}

.dark .block.dark\:hidden {
  display: none;
}

/* ============================================
   LOGO STYLES
   ============================================ */

/* Logo Container */
header a[rel="home"],
a.custom-logo-link {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
}

/* Logo Size Default (Header) - High specificity to override Tailwind */
header a[rel="home"] img.custom-logo.logo-default,
a img.custom-logo.logo-default,
img.custom-logo.logo-default {
  max-width: 200px !important;
  min-width: 120px !important;
  width: 200px !important;
  height: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure SVG logos have a size */
header a[rel="home"] img.custom-logo.logo-default[src$=".svg"],
a img.custom-logo.logo-default[src$=".svg"],
img.custom-logo.logo-default[src$=".svg"] {
  width: 200px !important;
  height: auto !important;
  max-width: 200px !important;
  min-height: 40px !important;
}

/* Logo Size Large (Footer) - High specificity */
footer a img.custom-logo.logo-large,
a img.custom-logo.logo-large,
img.custom-logo.logo-large {
  max-width: 250px !important;
  min-width: 150px !important;
  width: 250px !important;
  height: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure SVG logos have a size in footer */
footer a img.custom-logo.logo-large[src$=".svg"],
a img.custom-logo.logo-large[src$=".svg"],
img.custom-logo.logo-large[src$=".svg"] {
  width: 250px !important;
  height: auto !important;
  max-width: 250px !important;
  min-height: 50px !important;
}

/* SVG Logo Dark Mode Support - JavaScript handles the color changes */
/* CSS only ensures proper sizing - color changes are handled by JS */
svg.custom-logo,
svg[data-svg-logo="true"] {
  display: block;
  max-width: 200px;
  height: auto;
}

svg.custom-logo.logo-large,
svg[data-svg-logo="true"].logo-large {
  max-width: 250px;
}
