:root {
    --lilac: #c8a2c8;
    --lilac-dark: #a174a1;
    --lilac-light: #e8cdf3;
    --text-dark: #2f2f2f;
    --white: #fff;
    --shadow: rgba(0, 0, 0, 0.05);
    --soft-shadow: rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--lilac-light);
    color: var(--lilac-dark);
    line-height: 1.6;
    text-align: center;
    background: url(images/purpleScreams.jpg) center/cover no-repeat fixed;
  }
  
  /* NAVBAR */
  header {
    background-color: var(--white);
    /*box-shadow: 0 2px 10px var(--shadow);*/
    background: url(images/purpleScreams.jpg) center/cover no-repeat fixed;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  
  .navbar h1 {
    color: var(--lilac-light);
    font-size: 1.6rem;
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  
  .navbar nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--lilac-light);
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  
  .navbar nav a:hover {
    color: var(--lilac);
  }
  
  /* HERO SECTION */
  .hero {
    background-color: var(--lilac);
    color:#c68ac6;
    -webkit-text-fill-color: #e8cdf3;
    padding: 5rem 2rem;
    text-align: center;
    background: url(images/purpleScreams.jpg) center/cover no-repeat fixed;
  }
  /*kind of the color of purple screams #5d3274*/
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  /* text shadow color = #563156 (very dark purple)*/
  .hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.3rem;
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  
  .btn {
    display: inline-block;
    background-color: /*#411559d5 #c8a2c872*/#8e51afcd;
    color: var(--lilac);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
  }
  
  .btn:hover {
    background-color:/* #8d5c8d*/ var(--lilac);
    -webkit-text-fill-color: #492749;
    transform: scale(1.05);
  }
  
  /* PROJECTS */
  .projects {
    padding: 4rem 2rem;
    background-color: #8e51af9b;
  }
  
  .projects h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--lilac-light);
    text-shadow: 5px 5px 4px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .project-card {
    background-color: #51305d;
    border: 1px solid var(--lilac-dark);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 1.5px 10px 10px 3px #3e2749b5;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: scale(1.03);
  }

  .project-card img {
    width: 100%;
    max-height: 175px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .project-card h3 {
    margin-bottom: 1rem;
    color: var(--lilac-light);
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  
  .project-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--lilac-light);
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
  }
  
  .project-card a {
    display: inline-block;
    background-color: /*#c8a2c872*/ #8e51afcd;
    padding: 0.7rem 1.5rem;
    border-radius: 8rem;
    color: var(--lilac-light);
    text-decoration: none;
    font-weight: 600;
    text-shadow: 1.5px 1.5px 5px #492749;
    -webkit-text-stroke: 0.3px #492749;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .project-card a:hover{
    background-color: var(--lilac);
    color: #492749;
    transform: scale(1.05);
  }

  /* CONTACT */
  .contact {
    padding: 4rem 2rem;
    color: var(--lilac-light);
    text-shadow: 1px 1px 10px #804480;
    -webkit-text-stroke: 0.3px #804480;
   }
  
  .contact h2 {
    font-size: 2.2rem;
    color: var(--lilac-light);
    text-shadow: 1.5px 3.5px 8px #000000;
    -webkit-text-stroke: 0.3px #804480;
  }

  .contact p {
    font-size: 1.3rem;
    color: var(--lilac-light);
    text-shadow: 1.5px 3.5px 8px #000000;
    -webkit-text-stroke: 0.3px #804480;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    color: var(--lilac-light);
    text-shadow: 1px 1px 10px #804480;
    -webkit-text-stroke: 0.3px #804480;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--lilac);
    border-radius: 15px;
    background-color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    box-shadow: 1.5px 8px 10px #000000;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form .btn {
    color: var(--lilac-light);
    margin-top: 1rem;
    box-shadow: 1.5px 8px 10px #000000;
  }
  
  /* FOOTER */
  .footer {
    background-color: #e8cdf39e;
    color: #492749;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    text-shadow: 1px 1px 10px #804480;
    -webkit-text-stroke: 0.3px #804480;
  }
  
  .footer p {
    margin: 0.4rem 0;
    font-weight: 300;
  }
  