body {
  font-family: "Poppins", sans-serif;
  color: #272142;
}

/* Navigation */

nav {
  padding: 20px 0;
}

.logo {
  font-size: 18px;
  font-weight: 500;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav li {
  list-style: none;
  display: inline;
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: #272142;
  font-size: 16px;
}

nav li.active a {
  color: #6c63ff;
}

/* Hero Section */

.hero {
  background: #f9f7fe;
  text-align: center;
  padding: 160px 20px;
}

.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 96px;
  font-weight: 700;
}

.hero h2 {
  font-weight: normal;
  font-size: 24px;
  line-height: 2;
  margin-bottom: 40px;
}

/* Button */

.btn-branding {
  background: #6c63ff;
  color: white;
  font-size: 18px;
  padding: 18px 30px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-branding:hover {
  background: #5a52e0;
  color: white;
}

/* Responsive */

@media (max-width: 900px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero p {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 18px;
  }
}
.project-description {
  padding: 120px 60px;
}

.project-description h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
}

.project-description p {
  font-size: 16px;
  line-height: 30px;
}

.project-image {
  background: #f9f7fe;
  padding: 40px;
}

/* Outline button */

.btn-branding-outline {
  border: 1px solid #6c63ff;
  color: #6c63ff;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-branding-outline:hover {
  background: #6c63ff;
  color: white;
}
/* Work page styling */
.work-content {
  padding: 40px 0;
}

/* Uniform project cards */
.project-card {
  background: #f9f7fe;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* keeps heading and description below image */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%; /* fill column height */
}

.project-card img {
  width: 100%;
  height: 200px; /* same height for all project images */
  object-fit: cover; /* crops without stretching */
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 16px;
  color: #6c757d;
  flex-shrink: 0; /* prevents collapsing */
}

/* Hover effect */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive: full-width on small screens */
@media (max-width: 768px) {
  .work-content .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .project-card {
    margin-bottom: 30px;
  }
}
.profile-image {
  max-width: 100%;
  border-radius: 10px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
}
/* Footer overall */
.site-footer {
  background: #f9f7fe; /* same as hero-about / light background */
  color: #333; /* same text color as body */
}

/* Work Inquiry box - wider */
/* Work Inquiry box - full width with padding */
.work-inquiry {
  background: #e6e0f8; /* subtle lavender/light purple */
  border-radius: 15px;
  display: block;
  width: 100%; /* full width of container */
  max-width: 100%; /* ensure it doesn’t exceed screen */
  padding: 40px 50px; /* generous padding inside for aesthetics */
  margin: 0 auto 40px auto; /* center horizontally and add bottom spacing */
  text-align: center; /* center the heading and button */
  box-sizing: border-box; /* include padding in width calculation */
}

.work-inquiry h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50; /* dark text for contrast */
}

/* Footer button */
.btn-footer {
  background: #7c5cff; /* primary accent color */
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.btn-footer:hover {
  background: #6a4be0;
  transform: translateY(-2px);
}

/* Footer email */
.footer-email {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
.social-buttons .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e6e0f8; /* light purple, matches footer theme */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.social-buttons .social-btn:hover {
  background: #7c5cff; /* accent color */
  transform: translateY(-3px);
}

.social-buttons .social-btn .social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .social-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .social-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .social-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .work-inquiry {
    padding: 30px 20px;
  }
}
