@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.7;
  background: #FFFFFF;
  color: #3C6E71; }

h1, h2, h3, h4 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #3C6E71; }

p, li {
  font-size: 1.2rem; }

.container {
  max-width: 1200px;
  padding: 15px;
  margin-inline: auto; }

.section {
  padding: 6rem 0; }

.grid {
  display: grid;
  gap: 2rem; }

.grid-1 {
  max-width: 800px;
  margin: auto; }

.grid-2 {
  grid-template-columns: repeat(2, 1fr); }

.grid-3 {
  grid-template-columns: repeat(3, 1fr); }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px dotted rgba(53, 53, 53, 0.8); }
  .navbar .nav-content {
    width: 100%;
    text-align: right; }
    .navbar .nav-content a {
      text-decoration: none;
      color: #3C6E71;
      transition: 0.3s ease;
      margin-right: 15px;
      font-weight: bold;
      font-size: 1.2em; }
      .navbar .nav-content a:hover {
        color: #353535; }
  .navbar .logo {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(rgba(53, 53, 53, 0.35), rgba(40, 75, 99, 0.55)), url("img/stiegler.jpg") center/cover;
  color: #FFFFFF; }
  .hero .hero-content {
    max-width: 1100px; }
    .hero .hero-content h1 {
      color: #FFFFFF;
      font-size: clamp(2rem, 5vw, 4rem);
      margin-bottom: 1rem;
      line-height: 5rem; }
    .hero .hero-content h2 {
      border-bottom: 1px solid #FFFFFF;
      padding-bottom: 30px; }
    .hero .hero-content h2, .hero .hero-content h3, .hero .hero-content h4 {
      color: #FFFFFF; }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #3C6E71;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease; }
  .btn:hover {
    background: #4a888c;
    transform: translateY(-2px); }

.section-quote {
  background: #353535; }
  .section-quote h4 {
    color: #FFFFFF; }

.section-light {
  background: #FFFFFF; }

.section-dark {
  background: #284B63; }
  .section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark p {
    color: #FFFFFF; }

.section-teal {
  background: #3C6E71; }
  .section-teal h1 {
    color: #FFFFFF; }

.card {
  padding: 2rem;
  border-radius: 1px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
  .card h2 {
    margin-bottom: 1rem;
    color: #3C6E71; }
  .card p {
    color: #3C6E71;
    padding-bottom: 1rem; }

.section-dark .card {
  background: rgba(255, 255, 255, 0.95); }

.footer {
  background: #FFFFFF;
  color: #284B63;
  text-align: center;
  padding: 2rem 0; }

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr; }

  .nav-links {
    gap: 1rem; } }
@media (max-width: 600px) {
  .navbar .nav-content {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    height: auto;
    padding: 1rem 0; }
  .navbar .nav-links {
    flex-wrap: wrap;
    justify-content: center; }

  .hero {
    padding-top: 7rem; }
    .hero .hero-content h1 {
      font-size: 2.3rem;
      line-height: 2.3rem; } }

/*# sourceMappingURL=styles.css.map */
