

:root {
  --beige: #F5F1E8;
  --beige-dark: #E8E0D0;
  --beige-darker: #D4C9B3;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --accent: #E8B4B8;
  
  --gradient-kadja: linear-gradient(125deg, #D4C9B3 0%, #E8E0D0 40%, #F5F1E8 70%, #E8B4B8 100%);
  --gradient-kadja-dark: linear-gradient(145deg, #1A1A1A 0%, #3D3D3D 50%, #6B6B6B 100%);
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-neumorphic: 8px 8px 16px rgba(209, 201, 179, 0.6), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  --ease-kadja: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-kadja-bounce: cubic-bezier(0.68, -0.35, 0.265, 1.35);
}




.kadja-border-unique {
  position: relative;
  border: 3px solid transparent;
  border-image: linear-gradient(145deg, var(--beige-darker), var(--accent), var(--beige)) 1;
  clip-path: polygon(0 0, 98% 0, 100% 2%, 100% 100%, 2% 100%, 0 98%);
}


.kadja-hover-tilt {
  transition: all 0.4s var(--ease-kadja);
}

.kadja-hover-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) translateY(-5px);
  box-shadow: 
    -5px 15px 40px rgba(212, 201, 179, 0.3),
    5px -5px 40px rgba(232, 180, 184, 0.2);
}


@keyframes kadja-slide-diagonal {
  0% {
    opacity: 0;
    transform: translate(-30px, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.kadja-animate-slide {
  animation: kadja-slide-diagonal 0.8s var(--ease-kadja) forwards;
}


.kadja-typo-mix {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: var(--gradient-kadja);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}




.btn-glass {
  position: relative;
  padding: 1.5rem 3rem;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid var(--glass-border);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn-glass:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-glass:hover::before {
  left: 100%;
}


.btn-neomorph {
  padding: 1.5rem 3rem;
  background: var(--beige);
  border: none;
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-neumorphic);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-neomorph:hover {
  box-shadow: 4px 4px 8px rgba(209, 201, 179, 0.6), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.btn-neomorph:active {
  box-shadow: inset 4px 4px 8px rgba(209, 201, 179, 0.6), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}


.btn-gradient {
  position: relative;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  border: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 60px rgba(102, 126, 234, 0.6);
}


.btn-3d {
  position: relative;
  padding: 1.5rem 3rem;
  background: #1A1A1A; 
  border: none;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transform: translateZ(-10px);
  transition: all 0.3s ease;
}

.btn-3d:hover {
  transform: translateZ(10px) rotateX(5deg) rotateY(-5deg);
}


.btn-magnetic {
  padding: 1.5rem 3rem;
  background: #1A1A1A; 
  border: 3px solid #1A1A1A;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-magnetic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-magnetic:hover::after {
  width: 400px;
  height: 400px;
}

.btn-magnetic:hover {
  color: var(--black);
  transform: scale(1.05);
}




.form-field {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-input-modern {
  width: 100%;
  padding: 1.5rem 1rem 0.5rem;
  border: none;
  border-bottom: 3px solid rgba(245, 241, 232, 0.2);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #F5F1E8;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-modern:focus {
  border-bottom-color: #667eea;
}

.form-label-floating {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  font-size: 1.1rem;
  color: #D4C5A9;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: 600;
}

.form-input-modern:focus + .form-label-floating,
.form-input-modern:not(:placeholder-shown) + .form-label-floating {
  top: 0.3rem;
  font-size: 0.75rem;
  color: #667eea;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.form-input-glass {
  width: 100%;
  padding: 1.5rem;
  background: rgba(245, 241, 232, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(245, 241, 232, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #F5F1E8;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-input-glass:focus {
  border-color: #667eea;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
  background: rgba(245, 241, 232, 0.1);
}


.form-input-glass::placeholder,
.form-input-modern::placeholder {
  color: rgba(245, 241, 232, 0.4);
  opacity: 1;
}


.form-input-neomorph {
  width: 100%;
  padding: 1.5rem;
  background: var(--beige);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--black);
  box-shadow: inset 4px 4px 8px rgba(209, 201, 179, 0.6), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.form-input-neomorph:focus {
  box-shadow: inset 6px 6px 12px rgba(209, 201, 179, 0.7), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}


.checkbox-modern {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.checkbox-modern input {
  position: absolute;
  opacity: 0;
}

.checkbox-modern-box {
  width: 30px;
  height: 30px;
  background: rgba(245, 241, 232, 0.05);
  border: 3px solid rgba(245, 241, 232, 0.3);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.checkbox-modern input:checked + .checkbox-modern-box {
  background: #667eea; 
  transform: rotate(10deg) scale(1.1);
}

.checkbox-modern input:checked + .checkbox-modern-box::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
}



.social-card-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige) 100%);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.social-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateZ(20px);
}

.social-card-3d:hover {
  transform: translateZ(30px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.social-card-3d-content {
  position: relative;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.social-card-3d-icon {
  font-size: 3rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.social-card-3d:hover .social-card-3d-icon {
  transform: scale(1.2) rotate(5deg);
}

.social-card-3d-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.social-card-3d-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0.5rem 0 0;
}



.spotify-embed-modern {
  position: relative;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: var(--shadow-glass);
  transition: all 0.4s ease;
}

.spotify-embed-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.spotify-embed-modern iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 12px;
}

.spotify-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spotify-icon {
  width: 50px;
  height: 50px;
  background: #1DB954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.4);
}

.spotify-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}



.media-embed-card {
  position: relative;
  background: var(--beige);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-neumorphic);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.media-embed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.media-embed-card iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.media-embed-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.media-platform-badge {
  padding: 0.5rem 1rem;
  background: #667eea; 
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}



.grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .grid-modern {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}

.grid-item-modern {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.grid-item-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.grid-item-modern:hover::before {
  opacity: 1;
}

.grid-item-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}



@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
  50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.8); }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
  will-change: box-shadow;
}


* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.btn-glass,
.btn-gradient,
.btn-3d,
.social-card-3d,
.content-card,
.media-embed-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}



.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.ripple-effect:active::after {
  width: 300px;
  height: 300px;
}



.media-embed-card[onclick]:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.media-embed-card[onclick]:hover div[style*="play"] {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 15px 60px rgba(255, 0, 0, 0.6);
}

.media-embed-card[onclick]:active {
  transform: translateY(-3px) scale(0.98);
}




.kadja-shimmer {
  position: relative;
  overflow: hidden;
}

.kadja-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  transform: translate(-100%, -100%) rotate(45deg);
  transition: transform 1.2s var(--ease-kadja);
}

.kadja-shimmer:hover::after {
  transform: translate(100%, 100%) rotate(45deg);
}


@keyframes kadja-pulse-unique {
  0%, 100% {
    box-shadow: 
      0 0 0 0 rgba(212, 201, 179, 0.7),
      0 0 0 10px rgba(232, 180, 184, 0);
  }
  50% {
    box-shadow: 
      0 0 0 10px rgba(212, 201, 179, 0),
      0 0 0 20px rgba(232, 180, 184, 0.4);
  }
}

.kadja-pulse {
  animation: kadja-pulse-unique 2.5s var(--ease-kadja) infinite;
}


.kadja-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
  pointer-events: none;
}


.kadja-border-flow {
  position: relative;
  border: 2px solid transparent;
}

.kadja-border-flow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    90deg,
    var(--beige-darker),
    var(--accent),
    var(--beige-darker),
    var(--accent)
  );
  background-size: 300% 300%;
  border-radius: inherit;
  animation: kadja-border-flow 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.kadja-border-flow:hover::before {
  opacity: 1;
}

@keyframes kadja-border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}



@media (max-width: 768px) {
  .btn-glass,
  .btn-neomorph,
  .btn-gradient,
  .btn-3d,
  .btn-magnetic {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  
  .btn-gradient span,
  .btn-glass span,
  .btn-magnetic span {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-card-3d:hover {
    transform: scale(1.02);
  }
  
  .media-embed-card[onclick]:hover img {
    transform: scale(1.02);
  }
  
  .kadja-hover-tilt:hover {
    transform: scale(1.02);
  }
  
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
}


