/**
 * Core Variables - Sultry Mind Application
 * Main configuration file containing all global variables
 * 
 * TABLE OF CONTENTS:
 * 1. Core Color Palette
 * 2. Theme Colors
 * 3. Text Colors  
 * 4. Background Colors
 * 5. Border Colors
 * 6. Shadow Effects
 * 7. Gradients
 * 8. UI Elements
 * 9. Component-Specific
 * 10. Animations
 * 11. Spacing & Layout
 * 12. Typography
 * 13. Breakpoints
 * 14. Z-Indices
 */
/* ==================================================
   1. CORE COLOR PALETTE
   Base colors from which other colors are derived
================================================== */
/* ==================================================
   2. THEME COLORS
   Semantic color definitions based on core palette
================================================== */
/* ==================================================
   3. TEXT COLORS
   For text elements with varying opacity levels
================================================== */
/* ==================================================
   4. BACKGROUND COLORS
   For component backgrounds with varying opacity
================================================== */
/* ==================================================
   5. BORDER COLORS
   For outlines, separators and boundaries
================================================== */
/* ==================================================
   6. SHADOW EFFECTS
   For depth, elevation and focus states
================================================== */
/* ==================================================
   7. GRADIENTS
   Complex color transitions for UI elements
================================================== */
/* ==================================================
   8. UI ELEMENTS
   Special effect colors for interactive elements
================================================== */
/* ==================================================
   9. COMPONENT-SPECIFIC
   Variables targeting specific components
================================================== */
/* ==================================================
   10. ANIMATIONS
   Timing functions and durations
================================================== */
/* ==================================================
   11. SPACING & LAYOUT
   For consistent spacing throughout the app
================================================== */
/* ==================================================
   12. TYPOGRAPHY
   Font families, sizes, weights and line heights
================================================== */
/* ==================================================
   13. BREAKPOINTS
   For responsive design
================================================== */
/* ==================================================
   14. Z-INDICES
   For controlling element stacking
================================================== */
.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
}

section {
  padding: 48px 0;
}
@media (max-width: 1024px) {
  section {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 24px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header h3 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #da356f, #ff006e, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .section-header h3 {
    font-size: 2rem;
  }
}
.section-header p {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(218, 53, 111, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header .header-content {
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px;
  }
}
.header .logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.header .logo h1 {
  font-family: "Fredoka One", cursive;
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
  margin-right: 4px;
}
.header .logo .logo-accent {
  color: #da356f;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}
.header .nav {
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .header .nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.header .nav .nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.header .nav .nav-link:hover {
  color: #da356f;
}
.header .nav .nav-link.active {
  color: #da356f;
}
.header .nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #da356f;
  border-radius: 1px;
}
.header .language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header .language-toggle .lang-btn {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header .language-toggle .lang-btn:hover {
  color: #e0e0e0;
}
.header .language-toggle .lang-btn.active {
  color: #da356f;
}
.header .language-toggle .lang-divider {
  color: #b0b0b0;
  font-size: 0.8rem;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(10deg);
    opacity: 0.8;
  }
}
.about-hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a25 50%, #2d2d40 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .about-hero {
    padding: 48px 0;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 32px 0;
  }
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(218, 53, 111, 0.2) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.2) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(255, 105, 180, 0.2) 0%, transparent 40%);
  animation: float 20s ease-in-out infinite;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
}
.about-hero .about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero .about-hero-content h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #da356f, #ff006e, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1024px) {
  .about-hero .about-hero-content h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .about-hero .about-hero-content h1 {
    font-size: 2.2rem;
  }
}
.about-hero .about-hero-content p {
  font-size: 1.3rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .about-hero .about-hero-content p {
    font-size: 1.1rem;
  }
}

@keyframes float {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
}
.about-me {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a25 100%);
  position: relative;
  overflow: hidden;
}
.about-me::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #da356f, transparent);
}
.about-me .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-me .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}
.about-me .about-text .about-paragraphs {
  margin-bottom: 32px;
}
.about-me .about-text .about-paragraphs p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .about-me .about-text .about-paragraphs p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}
.about-me .about-text .about-paragraphs p:last-child {
  margin-bottom: 0;
}
.about-me .about-text .about-paragraphs p:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 768px) {
  .about-me .about-text .about-paragraphs p:first-child {
    font-size: 1.1rem;
  }
}
.about-me .about-text .about-cta {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .about-me .about-text .about-cta {
    flex-direction: column;
    align-items: center;
  }
}
.about-me .about-text .about-cta .about-btn {
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-me .about-text .about-cta .about-btn:hover {
  transform: translateY(-2px);
}
.about-me .about-visual {
  display: flex;
  justify-content: center;
}
.about-me .about-visual .developer-card {
  background: rgba(45, 45, 64, 0.9);
  border: 1px solid rgba(218, 53, 111, 0.3);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(218, 53, 111, 0.3);
  text-align: center;
  max-width: 350px;
  width: 100%;
  position: relative;
}
.about-me .about-visual .developer-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, #da356f, #ff006e, #ff69b4, #da356f);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-me .about-visual .developer-card:hover::before {
  opacity: 0.6;
}
.about-me .about-visual .developer-card .dev-avatar {
  margin-bottom: 24px;
}
.about-me .about-visual .developer-card .dev-avatar .avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  border: 4px solid rgba(218, 53, 111, 0.3);
}
.about-me .about-visual .developer-card .dev-avatar .avatar-placeholder span {
  filter: brightness(1.2);
}
.about-me .about-visual .developer-card .dev-info h4 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.about-me .about-visual .developer-card .dev-info p {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
.developer-card {
  animation: cardFloat 6s ease-in-out infinite;
}

.tech-skills {
  background: linear-gradient(135deg, #1a1a25 0%, #0a0a0f 100%);
  position: relative;
}
.tech-skills .tech-category {
  margin-bottom: 48px;
}
.tech-skills .tech-category:last-child {
  margin-bottom: 0;
}
.tech-skills .tech-category .category-title {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .tech-skills .tech-category .category-title {
    font-size: 1.2rem;
  }
}
.tech-skills .tech-category .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  justify-items: center;
}
@media (max-width: 768px) {
  .tech-skills .tech-category .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
  }
}
.tech-skills .tech-category .tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(45, 45, 64, 0.4);
  border: 1px solid rgba(218, 53, 111, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 100px;
}
.tech-skills .tech-category .tech-item:hover {
  transform: translateY(-5px);
  border-color: rgba(218, 53, 111, 0.5);
  background: rgba(45, 45, 64, 0.6);
  box-shadow: 0 8px 25px rgba(218, 53, 111, 0.15);
}
.tech-skills .tech-category .tech-item .tech-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-skills .tech-category .tech-item .tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tech-skills .tech-category .tech-item .tech-icon .json-icon,
.tech-skills .tech-category .tech-item .tech-icon .yaml-icon,
.tech-skills .tech-category .tech-item .tech-icon .jinja-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  color: #ffffff;
}
.tech-skills .tech-category .tech-item .tech-icon .json-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}
.tech-skills .tech-category .tech-item .tech-icon .yaml-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.tech-skills .tech-category .tech-item .tech-icon .jinja-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.tech-skills .tech-category .tech-item .tech-name {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: color 0.3s ease;
}
.tech-skills .tech-category .tech-item:hover .tech-name {
  color: #ffffff;
}
.tech-skills::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 20%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(218, 53, 111, 0.05) 0%, transparent 70%);
  transform: rotate(-15deg);
}
.tech-skills::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -10%;
  width: 20%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 0, 110, 0.05) 0%, transparent 70%);
  transform: rotate(15deg);
}

.contact-section {
  background: linear-gradient(135deg, #1a1a25 0%, #2d2d40 100%);
  position: relative;
  text-align: center;
}
.contact-section .contact-content {
  max-width: 600px;
  margin: 0 auto;
}
.contact-section .contact-content h3 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #da356f, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .contact-section .contact-content h3 {
    font-size: 1.8rem;
  }
}
.contact-section .contact-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .contact-section .contact-content p {
    font-size: 1rem;
  }
}
.contact-section .contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact-section .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.contact-section .contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 53, 111, 0.1);
  border: 1px solid rgba(218, 53, 111, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .contact-section .contact-link {
    width: 200px;
    justify-content: center;
  }
}
.contact-section .contact-link:hover {
  background: rgba(218, 53, 111, 0.2);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 53, 111, 0.2);
  border-color: rgba(218, 53, 111, 0.5);
}
.contact-section .contact-link .contact-icon {
  font-size: 1.2rem;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.contact-section .contact-link:hover .contact-icon {
  filter: grayscale(0);
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(218, 53, 111, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: contactFloat1 8s ease-in-out infinite;
}
.contact-section::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: contactFloat2 10s ease-in-out infinite reverse;
}

@keyframes contactFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}
@keyframes contactFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-25px, 15px) scale(0.9);
  }
}
.footer {
  background: linear-gradient(135deg, #2d2d40 0%, #1f1f2d 100%);
  border-top: 1px solid rgba(218, 53, 111, 0.2);
  color: #e0e0e0;
  padding: 48px 0 24px 0;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}
.footer .footer-section h4 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #da356f, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer .footer-section h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.footer .footer-section p {
  color: #b0b0b0;
  margin: 0;
  line-height: 1.6;
}
.footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-section ul li {
  margin-bottom: 4px;
}
.footer .footer-section ul li:last-child {
  margin-bottom: 0;
}
.footer .footer-section ul a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-section ul a:hover {
  color: #da356f;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(218, 53, 111, 0.1);
}
.footer .footer-bottom p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}