/* Google Font  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Pacifico&display=swap");

/* General Styles  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #1a1a1a; /* dark background */
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #ffb6c1; /* cute pink */
}

a:hover {
  color: #ff69b4;
}

/* Container  */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}
main.container p {
  margin-bottom: 20px;
}

/* Header  */
.site-header {
  background-color: #000;
  padding: 15px 0;
  border-bottom: 2px solid #ffb6c1;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand h1 {
  font-family: "Pacifico", cursive;
  color: #ff69b4;
  margin-left: -300px;
}

.subtitle {
  font-style: italic;
  color: #ffb6c1;
  font-size: 0.9rem;
  margin-left: -300px;
}

.nav .nav-link {
  margin-left: 20px;
  font-weight: 600;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.nav .nav-link.active,
.nav .nav-link:hover {
  background-color: #ff69b4;
  color: #fff;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 40px 0;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h2 {
  font-family: "Pacifico", cursive;
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 10px;
  padding-left: 40px;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-left: 40px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff69b4;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
  margin-left: 20px; /* add this to align with paragraphs */
  margin-top: 20px; /* keeps some space above button */
}

.btn:hover {
  background-color: #ff1493;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.profile-photo {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 5px solid #ffb6c1;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== Cards ===== */
.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background-color: #111;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  transition: 0.3s;
}

.card:hover {
  background-color: #222;
  transform: translateY(-5px);
}

/* Projects */
.project-card {
  background-color: #111;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.project-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-card:hover {
  background-color: #222;
  transform: translateY(-5px);
}

/*  Contact Form */
.contact-form {
  background-color: #111;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  margin: 20px auto;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #ffb6c1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.contact-form button {
  background-color: #ff69b4;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #ff1493;
}

.form-note {
  font-size: 0.8rem;
  color: #ffb6c1;
}

/* Footer */
.site-footer {
  background-color: #000;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #ffb6c1;
}

.site-footer .social-links a {
  margin: 0 10px;
  color: #ffb6c1;
}

.site-footer .social-links a:hover {
  color: #ff69b4;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    min-width: 100%;
  }

  .quick-info {
    flex-direction: column;
  }
}
.quick-info .card ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.quick-info {
  margin-top: 30px; /* adds space above the boxes aka 'cards' */
}
