/* Global Styles */
:root {
  --bg-color: #000000;
  --primary-pink: #ff66cc;
  --primary-purple: #9b59b6;
  --text-color: #f0f0f0;
  --font-family: 'Inter', sans-serif;
}

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

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--primary-purple);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.nav a {
  margin-left: 1.5rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: radial-gradient(ellipse at 60% 40%, rgba(155, 89, 182, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(255, 102, 204, 0.15) 0%, transparent 55%),
              #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 204, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.12), transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.hero-content {
  max-width: 520px;
  text-align: left;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-photo {
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo wrapper for gradient border on circle */
.photo-ring {
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff66cc, #9b59b6);
  box-shadow: 0 0 35px rgba(255, 102, 204, 0.45),
              0 0 70px rgba(155, 89, 182, 0.25);
  animation: float 5s ease-in-out infinite;
}

.profile-photo {
  width: 105px;
  height: 105px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  border: 3px solid #000;
}

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff66cc, #c084fc, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-align: left;
}

.logo-image {
  width: 280px;
  max-width: 90%;
  margin: 0 0 1.8rem 0;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 102, 204, 0.4));
}

.cta-button {
  background: var(--primary-pink);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-purple);
  transform: translateY(-3px);
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 2rem;
  color: var(--primary-pink);
}

/* Services Grid */
.services {
  padding: 2rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  width: 300px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 102, 204, 0.3);
}

/* About Section */
.about {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Contact Form */
.contact {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-family);
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.submit-button {
  background: var(--primary-pink);
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-purple);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.social-icons a {
  margin: 0 0.5rem;
  color: var(--primary-pink);
  font-weight: 600;
}

/* Fade‑in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 7rem 1.5rem 3rem;
    height: auto;
    gap: 2rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-title {
    font-size: 2rem;
  }
  .profile-photo {
    width: 220px;
    height: 260px;
  }
  .service-grid {
    flex-direction: column;
    align-items: center;
  }
}
