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

:root {
  --primary: #8806ce;
  --secondary: #ff9500;
  --success: #06cf68;
  --error: #e63946;
  --warning: #ffc107;
  --info: #0066cc;
  --bg: #ffffff;
  --text-main: #1a1a1a;
  --text-secondary: #555555;
  --hover: #6b3fa0;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 206, 0.18) 0%,
    rgba(255, 149, 0, 0.1) 35%,
    rgba(136, 6, 206, 0.05) 65%,
    rgba(255, 255, 255, 0) 80%,
    #ffffff 100%
  );
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  background: transparent;
  color: var(--text-main);
  line-height: 1.6;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(143, 6, 206, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.95rem;
}

nav a:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  nav {
    padding: 0.75rem 1rem;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav a {
    white-space: nowrap;
  }
}

/* Hero Section */
.hero {
  margin-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.hero-content {
  max-width: 650px;
  animation: fadeInUp 1s ease-out;
}

.hero-image {
  width: 280px;
  height: 280px;
  margin: 0 auto 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  box-shadow: 0 20px 60px rgba(136, 6, 206, 0.25);
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .hero {
    margin-top: 70px;
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    width: 200px;
    height: 200px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* About Section */
.about {
  padding: 6rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.about h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-bottom: 4rem;
  color: var(--primary);
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.about-text {
  max-width: 600px;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 1rem 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image {
    height: 350px;
  }

  .about-text p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
  margin-top: 2rem;
}

footer p {
  margin-bottom: 0.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Main Content */
main {
  display: block;
}

/* Sections Semantic */
section {
  display: block;
}

/* Focus Visible */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  opacity: 0.3;
  margin: 3rem 0;
}

/* Coming Soon Section */
.coming-soon {
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--primary);
}

.coming-soon p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .coming-soon {
    padding: 4rem 1rem 3rem;
  }

  .coming-soon p {
    font-size: 0.95rem;
  }
}

/* Interests */
.interests {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(136, 6, 206, 0.2);
}

.interests-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.interest-item strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  .interests-list {
    gap: 1.5rem;
  }

  .interest-item {
    font-size: 0.9rem;
  }
}

/* Coming Soon Callout */
.coming-soon-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
}
