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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #1a1212;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(46, 125, 50, 0.06) 0%, transparent 50%);
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 57, 53, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #E53935;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(229, 57, 53, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(46, 125, 50, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-avatar {
  margin-bottom: 24px;
}

.avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E53935, #2E7D32);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 40px rgba(229, 57, 53, 0.3);
}

.hero-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(229, 57, 53, 0.3);
}

.hero-handle {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #E53935, #2E7D32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-bottom: 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #E53935, #2E7D32);
  color: #fff;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 57, 53, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: #E53935;
  background: rgba(229, 57, 53, 0.1);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #2E7D32;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

/* About */
.about {
  border-top: 1px solid rgba(229, 57, 53, 0.1);
}

.about-content {
  max-width: 640px;
}

.about-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

/* Gallery */
.gallery {
  border-top: 1px solid rgba(229, 57, 53, 0.1);
}

.gallery iframe {
  margin-top: 24px;
  border-radius: 8px;
}

.gallery-cta {
  text-align: center;
}

/* Connect */
.connect {
  border-top: 1px solid rgba(229, 57, 53, 0.1);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(229, 57, 53, 0.1);
  border-color: #E53935;
  transform: translateY(-2px);
}

.social-link svg {
  color: #E53935;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(229, 57, 53, 0.1);
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-handle {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .nav-links {
    gap: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    flex-direction: column;
    height: auto;
    padding: 12px 24px;
    gap: 8px;
  }

  .nav-links {
    gap: 16px;
  }
}
