/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ===== SOCIAL FLOAT ===== */
.social-float {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.social-float a {
  width: 28.3px;
  height: 28.3px;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-float a:hover {
  background: #facc15;
  color: #0f172a;
  transform: scale(1.1);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
}

.logo span {
  color: #7c3aed;
}

.header nav {
  display: flex;
  gap: 26px;
}

.header nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  position: relative;
}

.header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #facc15, #fb923c);
  transition: 0.3s;
}

.header nav a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #0f172a;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #7c3aed;
}

.hero-text h1 em {
  font-style: normal;
  color: #38bdf8;
}

.hero-text p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #334155;
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(124,58,237,0.25);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    margin: auto;
  }

  .header nav {
    position: absolute;
    top: 70px;
    right: 6%;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: none;
  }

  .header nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
/* ===== ABOUT ME ===== */
.about {
  padding: 100px 6%;
  background: linear-gradient(
    135deg,
    rgba(124,58,237,0.05),
    rgba(56,189,248,0.05),
    #ffffff
  );
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(15,23,42,0.15);
}

.about-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 18px;
}

.cv-btn {
  margin-top: 10px;
  background: linear-gradient(90deg, #7c3aed, #38bdf8);
  color: white;
  border: none;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

/* FULL CV */
.full-cv {
  display: none;
  margin-top: 30px;
  padding-left: 22px;
  border-left: 3px solid #facc15;
  animation: fadeIn 0.4s ease;
}

.full-cv h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.full-cv h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.skills-list {
  list-style: none;
  padding-left: 0;
}

.skills-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.cv-fun {
  margin-top: 20px;
  font-style: italic;
  color: #475569;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin: auto;
  }

  .full-cv {
    text-align: left;
  }
}

/* ===== I ADVISE ===== */
.advise {
  padding: 100px 6%;
  text-align: center;
  background: linear-gradient(
    135deg,
    #cfaf7e,   /* very soft orange */
    #fbeb5a    /* very soft yellow */
  );
}

.advise h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

.advise h3 {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #7c3aed;
}

.advise p {
  margin: 24px auto;
  max-width: 700px;
  font-size: 1.05rem;
  color: #334155;
}

.primary-btn {
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #7c3aed, #38bdf8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  display: none;
  padding: 100px 6%;
  background: #f8fafc;
}

.features-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  margin-bottom: 12px;
}

.features-list a {
  color: #0f172a;
  text-decoration: underline;
}

.back-btn {
  margin-bottom: 30px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #7c3aed;
}
/* ===== A LEAP WITHIN ===== */
.leap {
  padding: 100px 6%;
  background: linear-gradient(135deg, #f8fafc, #fff7ed);
}

.leap-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.leap-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  animation: floatSlow 4s ease-in-out infinite;
}

.leap-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.leap-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

.reviews p {
  font-size: 0.95rem;
  margin-top: 16px;
  color: #475569;
  border-left: 3px solid #fb923c;
  padding-left: 14px;
}

/* FLOAT ANIMATION */
@keyframes floatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .leap-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leap-image img {
    margin: auto;
  }
}
/* ===== SKILLSLATE ===== */
.skillslate {
  padding: 100px 6%;
  background: linear-gradient(135deg, #fefce8, #ffffff);
}

.skillslate-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.skillslate-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.skillslate-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

.skillslate-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  animation: floatSlow 4s ease-in-out infinite;
}

/* MOBILE */
@media (max-width: 900px) {
  .skillslate-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .skillslate-image img {
    margin: auto;
  }
}
/* ===== ZOVY STUDIOS ===== */
.zovy {
  padding: 100px 6%;
  background: linear-gradient(135deg, #ffffff, #fef3c7);
}

.zovy-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}

.zovy-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  animation: floatSlow 4s ease-in-out infinite;
}

.zovy-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.zovy-content h3 {
  font-size: 1.2rem;
  color: #f59e0b;
  margin-bottom: 20px;
}

.zovy-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

.zovy-content h4 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.zovy-services {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.zovy-services li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.zovy-more {
  font-style: italic;
  color: #475569;
  margin-bottom: 22px;
}

/* MOBILE */
@media (max-width: 900px) {
  .zovy-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zovy-image img {
    margin: auto;
  }
}
/* ===== CONTACT ===== */
.contact {
  padding: 90px 6%;
  background: linear-gradient(135deg, #fefce8, #fff7ed);
  text-align: center;
}

.contact-wrapper {
  max-width: 700px;
  margin: auto;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 800;
}

.contact h3 {
  font-size: 1.4rem;
  margin: 14px 0;
}

.say-hi {
  font-size: 1.9rem;
  font-weight: 900;
  color: #f97316;
}

.contact p {
  color: #475569;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
}

.direct-contact {
  margin-top: 24px;
  font-size: 0.95rem;
}

.direct-contact a {
  color: #0f172a;
  text-decoration: none;
}

/* SUCCESS VIEW */
.success-view {
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 6%;
  background: #0f172a;
  color: #e5e7eb;
  text-align: center;
}

.footer .quote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 18px;
  color: #cbd5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-links a {
  color: #facc15;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer .credit {
  font-size: 0.85rem;
  color: #94a3b8;
}
/* ===== AI CHAT ===== */
.ai-chat {
  padding: 80px 6%;
  background: #f8fafc;
  text-align: center;
}

.chat-box {
  max-width: 700px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  height: 300px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.chat-message {
  margin-bottom: 12px;
  text-align: left;
}

.user {
  font-weight: 600;
  color: #2563eb;
}

.bot {
  color: #0f172a;
}

.chat-input {
  max-width: 700px;
  margin: 14px auto 0;
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.chat-input button {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: #7c3aed;
  color: white;
  cursor: pointer;
}
