/* ============================================
   MODERN CREATIVE COLOR PALETTE
   ============================================ */
:root {
  --royal-purple: #6B2FA0;
  --vibrant-orange: #FF8C42;
  --gold-yellow: #FFD700;
  --deep-purple: #5A1F7D;
  --light-gold: #FFF8DC;
  --orange-accent: #FF6B35;
  --purple-accent: #8B3FA0;
  --header-height: 80px;
}

/* ============================================
   MODERN HEADER
   ============================================ */
header {
  background: #6B2FA0 !important;
  border-bottom: none !important;
  box-shadow: 0 10px 40px rgba(107, 47, 160, 0.3);
  padding: 15px 0 !important;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-left: 8px !important;
  padding-right: 8px !important;
  box-sizing: border-box;
}

header h1 {
  margin: 0 !important;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

header > div {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.header-title-image {
  display: block;
  height: 50px;
  width: auto;
  max-width: min(300px, 54vw);
  object-fit: contain;
  object-position: left center;
  margin-left: 6px;
}

header h1 a {
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 700;
}

header h1 a:hover {
  filter: brightness(1.1);
}

header nav {
  display: flex;
  gap: 10px;
  margin-left: 8px;
  flex-shrink: 0;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  header {
    padding-left: 6px !important;
    padding-right: 6px !important;
    gap: 8px;
  }

  .header-title-image {
    height: 36px;
    max-width: min(200px, 52vw);
    margin-left: 4px;
  }

  header nav a {
    padding: 7px 9px;
    font-size: 0.84rem;
  }
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

header nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

header nav a:hover::before {
  width: 300px;
  height: 300px;
}

header nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HERO SECTION - MODERN GRADIENT BACKGROUND
   ============================================ */
.hero {
  background: linear-gradient(135deg, #6B2FA0 0%, #5A1F7D 25%, #FF8C42 50%, #FFD700 75%, #FF6B35 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  color: white;
  padding: 28px 20px;
  text-align: center;
  height: calc(100dvh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

main {
  padding-top: var(--header-height) !important;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
  animation: fade-up 0.8s ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.98;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ============================================
   ABOUT SECTION - SOFT GRADIENT
   ============================================ */
.about {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9ff 0%, #f0e6ff 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="20" fill="%238B5CF6" opacity="0.1"/><circle cx="75" cy="75" r="30" fill="%23EC4899" opacity="0.1"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.about h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(135deg, #6B2FA0 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.about p {
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  font-weight: 400;
}

/* ============================================
   FEATURED PROJECT SECTION
   ============================================ */
.featured-project {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 50%, #ffe6f0 100%);
  position: relative;
}

.featured-project::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 47, 160, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.featured-project h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  text-align: center;
  background: linear-gradient(135deg, #6B2FA0 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.project-card.featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #6B2FA0 0%, #5A1F7D 50%, #FF8C42 100%);
  border: none;
  border-radius: 20px;
  padding: 50px;
  gap: 50px;
  box-shadow: 0 20px 60px rgba(107, 47, 160, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.project-card.featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.project-card.featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(107, 47, 160, 0.4);
}

.project-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.project-content h3 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.project-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  font-weight: 300;
}

.project-icon {
  font-size: 6.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ============================================
   PROJECTS GRID SECTION
   ============================================ */
.projects-grid {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 50%, #fffaeb 100%);
  position: relative;
}

.projects-grid::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.projects-grid h2 {
  font-size: 2.8rem;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #6B2FA0 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.grid .project-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
}

.grid .project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.05) 0%, 
    rgba(240, 147, 251, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.grid .project-card:nth-child(1) {
  border-color: #6B2FA0;
  box-shadow: 0 10px 30px rgba(107, 47, 160, 0.1);
}

.grid .project-card:nth-child(2) {
  border-color: #FF8C42;
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.1);
}

.grid .project-card:nth-child(3) {
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.grid .project-card:hover {
  transform: translateY(-15px);
  border-color: currentColor;
}

.grid .project-card:hover::before {
  opacity: 1;
}

.grid .project-card:nth-child(1):hover {
  box-shadow: 0 25px 50px rgba(107, 47, 160, 0.25);
}

.grid .project-card:nth-child(2):hover {
  box-shadow: 0 25px 50px rgba(255, 140, 66, 0.25);
}

.grid .project-card:nth-child(3):hover {
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.25);
}

.project-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.grid .project-card:nth-child(1) h4 {
  color: #6B2FA0;
}

.grid .project-card:nth-child(2) h4 {
  color: #FF8C42;
}

.grid .project-card:nth-child(3) h4 {
  color: #FFD700;
}

.project-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  opacity: 1;
  position: relative;
  z-index: 1;
}

/* ============================================
   CALL TO ACTION BUTTONS
   ============================================ */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #6B2FA0 0%, #FF8C42 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(107, 47, 160, 0.3);
}

.hero .cta-button {
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.hero .cta-button:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 47, 160, 0.4);
}

.project-link {
  display: inline-block;
  background: linear-gradient(135deg, #6B2FA0 0%, #FF8C42 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(107, 47, 160, 0.25);
}

.project-link:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(107, 47, 160, 0.35);
}

/* ============================================
   CTA SECTION - VIBRANT FINALE
   ============================================ */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #6B2FA0 0%, #5A1F7D 25%, #FF8C42 50%, #FFD700 75%, #FF6B35 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.98;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.cta-section .cta-button {
  background: white;
  color: #667eea;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid rgba(107, 47, 160, 0.1);
  color: #666;
  background: #fafafa;
  font-weight: 500;
}

footer p {
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hero {
    padding: 20px 16px;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  .hero h2 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .project-card.featured {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }

  .project-icon {
    font-size: 4rem;
  }

  .about h2,
  .featured-project h2,
  .projects-grid h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .project-content h3 {
    font-size: 1.6rem;
  }

  .project-card h4 {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=main.css.map */
