/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #ff91c4;
  color: white;
}

.btn-primary:hover {
  background-color: #ff6fb5;
}

.btn-outline {
  background-color: transparent;
  color: #ff91c4;
  border: 2px solid #ff91c4;
}

.btn-outline:hover {
  background-color: #fff0f7;
}

.btn-block {
  width: 100%;
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #fff0f7, #ffe5f2);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-avatar {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #ff91c4, #ff6fb5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.wave-emoji {
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-link {
  color: #4b5563;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ff91c4;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* About Section */
.about-section {
  padding: 5rem 1rem;
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.profile-image-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 16rem;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 4px solid #ff91c4;
  object-fit: cover;
}

.about-text {
  color: #374151;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.feature-card-1 {
  background-color: #fff0f7;
}

.feature-card-2 {
  background-color: #ffe5f2;
}

.feature-card-3 {
  background-color: #ffdbe8;
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-card-1 .feature-icon {
  color: #ff91c4;
}

.feature-card-2 .feature-icon {
  color: #ff6fb5;
}

.feature-card-3 .feature-icon {
  color: #ff4da0;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-text {
  color: #4b5563;
}

/* Skills Section */
.skills-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.skill-category {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.skill-category-title {
  color: #ff91c4;
  margin-bottom: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.5rem 0.75rem;
  background-color: #fff0f7;
  color: #ff91c4;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom right, #fff0f7, #ffe5f2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info,
.contact-form-wrapper {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: #ff91c4;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-label {
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-link {
  color: #ff91c4;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #374151;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff91c4;
  box-shadow: 0 0 0 3px rgba(255, 145, 196, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  text-align: center;
  color: #6b7280;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-image-wrapper {
    justify-content: flex-start;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
