:root {
  --branding-color: #6C63FF;
  --secondary-color: #f9f7fe;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family: "Poppins", sans-serif;
  --default-font-color: #272142;
}

html, body {
  background: white;
  font-family: var(--default-font-family);
  color: var(--default-font-color);
  margin: 0;
  padding: 0;

}

.homepage .navbar {
  background-color: var(--secondary-color);
}

/* Headings */
h1, h2, h3 {
  font-family: var(--heading-font-family);
  margin: 0;
}

h1 {
  font-size: 96px;
  font-weight: 700;
  color: black;
  padding: 20px 0;
}

h2, h3 {
  font-weight: 400;
}





/* Hero Section (Homepage) */
.hero {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 160px 20px;
  
}

.hero h2 {
  font-family: var(--default-font-family);
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

.hero h3 {
  font-family: var(--default-font-family);
  font-size: 24px;
  font-weight: 400;
  padding: 10px 0;
}


.about-hero {
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  
}

.about-hero h3 {
  font-family: var(--default-font-family);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  
}

.about-hero p {
  font-family: var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(39, 33, 66, 0.8);
  

}

.about-hero img {
 
  width: 560px;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Work Section */
.work-section {
  padding: 60px 20px;
  
}

.work-section h2 {
  font-family: var(--default-font-family);
  font-size: 18px;
  margin-bottom: 40px;
}

.work-section h3 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-section p {
  font-size: 16px;
  line-height: 30px;
  color: rgba(39, 33, 66, 0.7);
}

/* Buttons */
.btn-branding,
.btn-outline-primary {
  border-radius: 4px;
  font-size: 18px;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-branding {
  background-color: var(--branding-color);
  color: white;
}

.btn-branding:hover {
  background-color: #5548cc;
}

.btn-outline-primary {
  border: 2px solid var(--branding-color);
  color: var(--branding-color);
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: var(--branding-color);
  color: white;
}


/* Inquiry Section */
.inquiry-section {
  background-color: var(--secondary-color);
  padding: 50px 20px;
  margin-top:50px;
}

.inquiry-section h2 {
  font-size: 48px;
  font-family: var(--heading-font-family);
  margin-bottom: 10px;
}

.inquiry-section p {
  font-size: 16px;
  font-family: var(--default-font-family);
  color: var(--default-font-color);
}

.inquiry-title {
  font-family: var(--heading-font-family);
font-weight: 700;
font-size: 48px;

}

.contact-heading {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--heading-font-family);
  color: var(--default-font-color);
  margin-bottom: 20px;
}


/* Footer */
.social-footer {
  padding: 40px 0;
  text-align: center;
}

.email-link {
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  background-color: var(--secondary-color);
  color: var(--branding-color);
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  color: #4b44cc;
}

/* Navbar */
.navbar {
  
  padding: 20px 0;
}

.navbar-brand {
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--branding-color);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-family: var(--default-font-family);
  font-size: 16px;
  color: var(--default-font-color);
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--branding-color);
}


.project-card h3 {
  color: black;
  font-family: var(--default-font-family);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card .role {
  font-size: 14px;
  color: var(--default-font-color);
  margin-bottom: 15px;
  font-weight: 400;
}

.project-card img {
  width: 560px;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.projects h1 {
font-size: 64px;
  font-weight: 700;
  font-family: var(--heading-font-family);
  color: var(--default-font-color);
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: left;
}


/* Responsive Styles */
@media (max-width: 900px) {
  h1 {
    font-size: 48px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero h3 {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .work-section h3 {
    font-size: 34px;
    text-align: center;
    margin-top: 30px;
  }

  .work-section p,
  .inquiry-section p,
  .about-hero p {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
  }

  .inquiry-section h2,
  .about-hero h1,
  .about-hero h3 {
    text-align: center;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero h3 {
    font-size: 18px;
  }

  .about-hero img {
    margin-top: 30px;
  }

  .btn-outline-primary {
    display: block;
    margin: 20px auto;
  }


  .email-link {
    font-size: 18px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }

  .projects h1 {
    font-size: 36px;
    text-align: center !important;
  }
}

