/* Reset defaults */
html {
  height: 100%;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Inter", sans-serif;
  background-color: #fff9f2;
  background-image: url("/images/background.webp");
  color: #333;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 650px;
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 0.5rem;

}
.logo {
  width: 150px;
  margin: 1rem auto;
  display: block;
  border-radius: 50%;
}

/* header .banner {
  width: 100%;
  height: auto;
  border-radius: 8px;
} */


main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background-color: #e0701a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
  transition: transform 0.1s ease-in-out;
  font-size: 1rem;
}

.btn .icon {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .btn i {
  font-size: 1.2rem;
} */

.btn:hover,
.btn:focus {
  transform: scale(1.02);
}

footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #666;
}

/* Tablet & desktop adjustments */
@media (min-width: 768px) {
  body {
    align-items: center;
    justify-content: center;
  }

  .container {
    max-width: 600px;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: #e0701a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s, transform 0.2s;
}

.social-btn:hover {
  background-color: #b85610;
  transform: scale(1.1);
}

/* about page */

.about-section {
  text-align: left;
  background-color: #fcf6f0; 
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;   
  max-width: 800px; 
  margin: 2rem auto; 
}

.about-section h1 {
  font-size: 2rem;
  color: #e0701a;
  margin-bottom: 1rem;
}

.about-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}
/* Default: desktop version visible, mobile hidden */
.about-mobile {
  display: none;
}

/* Mobile view: show simplified version */
@media (max-width: 768px) {
  .about-desktop {
    display: none;
  }
  .about-mobile {
    display: block;
  }
}


/* 404 page */

.style404 {
  font-size: 5rem;
  color: #e0701a;
}

.error-content p {
  font-size: 1rem;
  color: #e0701a;
  font-weight: bold;
}

.error-content .btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #e0701a;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s, transform 0.2s;
}

.seo-blurb {
  text-align: center;
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.seo-blurb h1 {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: bold;
  color: #e0701a;
  margin-bottom: 0.5rem;
}

/* Default: show desktop, hide mobile */
.seo-mobile {
  display: none;
}

/* Show mobile version on screens narrower than 600px */
@media (max-width: 768px) {
  .seo-desktop {
    display: none;
  }
  .seo-mobile {
    display: block;
  }
}

