@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

:root {
  /* Vibrant Oranges */
  --color-orange-red: #FF4500;
  --color-tomato: #FF6347;
  --color-classic-orange: #FFA500;
  --color-dark-orange: #FF8C00;
  --color-coral: #FF7F50;
  /* Subtle and Muted Oranges */
  --color-golden-orange: #E59400;
  --color-chocolate-orange: #D2691E;
  --color-pastel-orange: #FFB347;
  --color-muted-sunset: #E6A157;
  --color-bronze-orange: #CC7722;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

main {
  transition: visibility 0s ease-in-out 0.1s;
}

a {
  text-decoration: none;
}

[id] {
  scroll-margin-top: 70px; /* equal to sticky header height */
}

.container {
  max-width: 1480px;
  margin: 0px auto;
  padding: 0px 2rem;
}

.prt-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark-orange);
  text-decoration: none;
  border: 1px solid var(--color-dark-orange);
  border-radius: 999px;
  /* pill shape */
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

.prt-link:hover {
  background-color: var(--color-dark-orange);
  color: white;
  border-color: var(--color-dark-orange);
}

.section-heading {
  text-align: center;
  width: 100%;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-golden-orange);
  letter-spacing: 1.5px;
  padding: 0.2em 0;
  margin: 0 auto;
}

.section-header h2::before,
.section-header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: var(--color-dark-orange);
}

.section-header h2::before {
  left: -60px;
}

.section-header h2::after {
  right: -60px;
}


footer {
  background-color: #000;
  padding: 15px 3px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  word-spacing: 4px;
}

footer p span {
  color: var(--color-golden-orange);
}

@media screen and (max-width:1080px) {
  .container {
    padding: 0.2rem 1rem;
  }

  .explore-btn i {
    height: 30px;
    width: 30px;
    margin-right: 6px;
    border-radius: 50%;
  }

  .explore-btn {
    font-size: 14px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 8px 17px;
  }

  footer {
    word-spacing: 1px;
    font-weight: 300;
  }
}

@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
    letter-spacing: 0.5px;
  }
}