@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #FFFFFF;
    --second-bg-color: #D6EEEB;
    --text-color: #000000;
    --main-color: #9990BA;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    display: flex;
    background: var(--bg-color);
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.Logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 600;
  cursor: default;
}


.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 4rem;
    transition: .3s;
}

.navbar a:hover, 
.navbar a.active { 
    color: var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

.home {
    display: flex;
}

.home-content p {
    font-size: 1.6rem ;
}

.about-text {
  background: #fff;
  max-width: 850px;
  margin: 4rem auto;
  padding: 3rem 3.5rem;
  text-align: justify;
  font-family: 'Merienda', cursive;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}


span {
    color: var(--main-color);
}



.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}



.social-media a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--main-color);
  transition: 0.3s ease;
  background-color: transparent;
}



.social-media a:hover {
  background: var(--main-color);
  color: var(--second-bg-color);
  box-shadow: 0 0 0.6rem var(--main-color);
}


.button {
    display: inline-block;
    padding: 0.4rem 1.4rem;
    background: var(--main-color);
    border-radius: 3rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.2rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 450;
    transition: .5s ease;
}


.button:hover {
    box-shadow: none;
}


.heading {
    text-align: center;
    font-size: 3.5rem;
}

/* project settings down below */

/* Projects Section */
.projects-section {
  padding: 10rem 5% 4rem; /* reduce from 9% to 5% */
  text-align: center;
}

.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #000;
}

.project-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}


.project-card p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}


.project-card {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  padding: 2rem 3rem;              /* reduced padding */
  border-radius: 1.6rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.06);
  text-align: left;
}


.button {
  padding: 0.5rem 1.6rem;
  background: #9990BA;
  border-radius: 2rem;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 0 0.5rem var(--main-color);
}



.button:hover {
  background: #7e6aa5;
}

.footer-line {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* light grey line */
  margin: 3rem auto 1.5rem auto;
  width: 90%;
  max-width: 1000px;
}




/* contact file*/

.contact-form input,
.contact-form textarea {
  border: 1px solid #ccc;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0.4rem rgba(153, 144, 186, 0.5);
}

.contact-form .button {
  background-color: var(--main-color);
  border: none;
  cursor: pointer;
}

