
  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Roboto:wght@400;700&display=swap');
  @font-face {
    font-family: "copperplate_gothic_boldRg";
    src: url("Copperplate Gothic Bold Regular/copperplate_gothic_bold_regular.woff2")
        format("woff2"),
      url("/Copperplate Gothic Bold Regular/copperplate_gothic_bold_regular.woff")
        format("woff");
    font-weight: normal;
    font-style: normal;
  }

:root {
  /* color varables */
  --primary: #024708;
  --primary-dark: #023f1d;
  --secondary: #04a427;
  --accent: #A8813C;
  --light-section-bg-color: #C7CFD1;

  /* font colors */

  --text-color: #111;
  --light-text-color: #e6f4ee;

  /* font sizes */
  --hero-title: clamp(2.8rem, 4cqw, 3rem);
  --hero-font: "copperplate_gothic_boldRg";
  --title-size: clamp(1.5rem, 4cqw, 2.5rem);
  --text-size: clamp(14px, 2cqw, 1.5rem);
  --nav-menu: 1rem;
  /* for other styles */
  --radius: 4px;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.6), 0 6px 6px rgba(0, 0, 0, 0.6);

  --block-padding: 5px 15px;
  --section-padding: 3em 20px;
}
body,
html {
  padding: 10px;
  color: var(--primary);
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
  padding: 0;
  margin: 0;
  background-color: var(--light-section-bg-color);
}
h1,
h2,
h3,
h4 {
  margin: 0;
  text-transform: capitalize;
}
p,
li {
  font-size: var(--text-size);
  color: var(--text-color); 
}
ul {
  margin: 0;
  padding: 0;
}
strong {
  font-family: var(--hero-font);
}
a {
  text-decoration: none;
  color: var(--accent);
  transition: .3s ease-in-out; 
}
a:hover {
  color: var(--secondary-lt);
}

/* animations  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  transition: opacity 1s ease;
}

/* Trigger animation when element is in view */
/* You can adjust the threshold and other options */
.fadeInTriggered {
  opacity: 1;
}

/* content area */
.intro {
  background: linear-gradient(to bottom, var(--primary), #6b7c79);
  min-height: 150px;
  display: grid;
  place-items: center;
}
.intro h2 {
  text-align: center;
  color: var(--primary);
  text-shadow: 2px 2px 4px #777;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: capitalize;
}
.intro h3 {
  color: var(--light-text-color);
  text-align: center;
  text-shadow: 2px 2px 4px #000;
  margin: 0;
}

.hero {
  background: linear-gradient(to right bottom, var(--primary), #6b7c79);
padding: 0 30px;
background-blend-mode: overlay;
 
}
.hero-inner {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 50px 0;
}
.hero-inner h1 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: clamp(26px, 5cqw, 3.2rem);
  font-weight: bold;
  color: var(--light-text-color);
  font-family: var(--hero-font);
  text-align: center;
}
.hero-inner span {
  font-size: 12px;
  color: white;
  margin-top: -10px;
}
.hero-inner p {
  color: white; 
  text-align: center;
  margin-bottom: -20px;
}


/* For the animated text */
#typing-container span {
  animation: typing-cursor 0.75s step-end infinite;
  color: var(--accent);
}

/* Cursor animation */
@keyframes typing-cursor {
  50% {
    border-color: transparent;
  }
}

.intro h3 {
  color: var(--light-text-color);
  font-size: clamp(24px, 3cqw, 2rem);
  text-align: center;
  text-shadow: 2px 2px 4px #000;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.5em;
}
.work-with-mark img {
  width: 100%;
}
.whats-included {
  max-width: 1200px;
  margin: 50px auto;
}
.whats-included h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: var(--title-size);
}
.whats-included ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 10px;
}
.whats-included ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 600px;
}
.whats-included ul li strong {
  max-width: 80%;
  color: black;
}


.included-items ul li img {
  display: inline;
  max-width: 50px;
  margin: auto;
}
/* bottom text for more info */
.more {
  background: linear-gradient(to top, var(--text-color), var(--primary));
  padding: 20px 8px;
  line-height: 2em;
}
.more p,
.more h3 {
  text-align: center;
  color: var(--light-text-color);
  margin: 0;
}




.contact-btn {
  text-align: center; 
  border: 1px solid; 
  width: fit-content; 
  margin: 20px auto; 
  background-color: #ccc;
  padding: 5px 15px; 
  border-radius: 4px;
  transition: transform 0.4s ease-in;
  margin-bottom: 30px;
}
.contact-btn a {
  color: var(--primary); 
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.3em;
  text-transform: uppercase;
}
.contact-btn:hover {
  transform: scale(1.2); 
}

.work-with-mark-txt {
  padding: var(--block-padding);
}



.promo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px 0;
}
.promo-heading {
  background-color: #efedffcc;
  padding: 10px 0;
  text-align: center;
  border: 3px groove #444;
  border-radius: 0 0 10px 10px;
  max-width: 1400px;
  margin: auto;
}
.package {
  position: relative;
  max-width: 400px;
  border-radius: 10px;
  border: 1px groove var(--primary);

  transition: transform 0.4s ease-in-out;
}

.package:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.8);
}
.package-header {
  background-color: var(--primary-dark);
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-family: var(--hero-title);
}



.package h4 {
  text-align: center;
  font-family: var(--hero-font);
  letter-spacing: 1px;
  padding: 5px 10px;
  font-size: var(--text-size);
  color: var(--light-text-color);
}

.package ul {
  margin-top: 10px;
  list-style: none;
  padding: 5px;
  border-radius: 0 0 10px 10px;
}
.package ul li {
  padding: 15px 5px;
  font-weight: bold;
  line-height: 1.3em;
  color: var(--text-color);
  text-transform: capitalize;
}
.package ul li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #222;
}



.download-btn {
 border: 1px solid #ccc;
  margin: 20px auto;
  padding: 12px 25px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, var(--primary-dark) ,var(--primary) );
  transition: all 0.3s ease;
}

.download-btn a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.download-btn img {
  vertical-align: middle;
  margin-right: 20px;
  height: 40px;
}
/* Hover effects */
.download-btn:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); 
  transform: translateY(-10px); 
}

@media (min-width: 700px) {
  .hero {
 
    min-height: 400px;
    display: grid;
    align-items: center;
  }
  .hero-inner span {
    font-size: 14px;
    color: white;
    margin-top: -30px;
  }
  
  .work-with-mark img {
    border: 1px groove #000;
    border-radius: var(--radius);
    max-width: 350px;
    margin: auto;
  }
  .download-btn {
    position: absolute;
    bottom: 0px;
    left: 110px;
  }
  .package ul {
    min-height: 600px;
  }
  .promo-container {
    gap: 10px;
  }
  .package-header {
    font-size: 20px;
  }
 
}

/* With larger screens */

@media (min-width: 60em) {
  .hero {
    min-height: 500px;

  }
  .hero-inner {
    max-width: 1200px;
    margin: auto;
  }
  
  .intro h2 {
    font-size: 2rem;
    
  }
  .promo-container {
    gap: 30px;
  }
.package {
  max-width: 25%;
}
  .work-with-mark {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: auto;
  }
  .work-with-mark-txt {
    max-width: 70%;
  }
  .offers {
    color: var(--light-text-color);
    padding: var(--block-padding);
    background-color: var(--primary);
    border-radius: var(--radius);
    font-weight: bold;
  }

  .items li {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .whats-included ul li {
    max-width: 520px;
    margin-bottom: 30px;
  }
 
}

footer {
  background-color: var(--text-color);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer p {
  color: white;
  font-family: var(--hero-font);
  font-size: .8em;
  margin: 0;
}



