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


/* ===== Root Variables (easy theming) ===== */
:root {
  --bg-dark: #121212;
  --bg-dark-soft: #1a1a1a;
  --text-light: #eaeaea;
  --text-muted: #b3b3b3;

  --pink-main: #ff4d8d;
  --pink-hover: #ff2f78;
  --pink-soft: #ff85b3;
}

/* ===== Global Styles ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Header / Navbar ===== */
#header {
  background-color: var(--bg-dark-soft);
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 1rem 1.5rem
  margin: 0 auto;
  max-width: 1100px;
  overflow: hidden;
  position 
}

.logo {
  color: var(--pink-main);
  font-size: 1.5rem;
  font-family: "Shadows Into Light",cursive;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  white-space: nowrap;
  
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--pink-main);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  text-align: center;
}
span {
  color: var(--pink-main);
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary {
  background-color: var(--pink-main);
  color: #fff;
}

.btn-secondary {
  border: 2px solid var(--pink-main);
  color: var(--pink-main);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background-color: var(--pink-hover);
}

.btn-secondary:hover {
  background-color: var(--pink-main);
  color: #fff;
}

/* ===== Sections ===== */
section {
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--pink-soft);
}

/* ===== About ===== */
.about-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: var(--text-muted);
}

/* ===== Skills ===== */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
}

.skill-item {
  background-color: var(--bg-dark-soft);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--pink-main);
}

/* ===== Projects ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.project-card {
  background-color: var(--bg-dark-soft);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-title {
  color: var(--pink-main);
  margin-bottom: 0.5rem;
}

.project-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.project-link {
  color: var(--pink-soft);
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
}

/* ===== Contact ===== */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: var(--bg-dark-soft);
  color: var(--text-light);
  font-size: 1rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  background-color: #ff4d8d; /* pink main */
  color: #fff;
  transition: background 0.3s, transform 0.2s;
}

.contact-form .btn:hover {
  background-color: #ff2f78; /* pink hover */
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--bg-dark-soft);
  text-align: center;
  padding: 1rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 1.5rem;
    background-color: var(--bg-dark-soft);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Wrapper to keep form + icons aligned */
.contact-form-wrapper {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Social Icons Container */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

/* Individual Icon Links */
.social-icon svg {
  width: 45px;
  height: 45px;
  fill: #ff4d8d; /* pink color */
  transition: transform 0.3s, fill 0.3s;
  cursor: pointer;
}

/* Hover effect */
.social-icon svg:hover {
  transform: scale(1.2);
  fill: #ff2f78; /* hover pink */
}

/* Make sure form inputs are full width for small screens */
.contact-form input,
.contact-form textarea {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .social-icons {
    gap: 1.2rem;
  }
  .social-icon svg {
    width: 35px;
    height: 35px;
  }
}
