/* <stdin> */
:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #111111;
  --border: #dddddd;
  --shadow: rgba(0,0,0,0.1);
}
body:has(#theme-toggle:checked) {
  --bg: #121212;
  --surface: #1e1e1e;
  --text: #f0f0f0;
  --border: #333333;
  --shadow: rgba(0,0,0,0.4);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  transition: 0.25s;
}
header.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle,
.hamburger {
  cursor: pointer;
  font-size: 1.5rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-menu a:hover {
  opacity: 0.7;
}
#menu-toggle {
  display: none;
}
.hamburger {
  display: none;
}
.contact-btn,
.btn {
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 2px solid var(--text);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-btn:hover,
.btn:hover {
  opacity: 0.7;
}
.hero {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  max-width: none;
  display: block;
}
.light-mode-image {
  display: block;
}
.dark-mode-image {
  display: none;
}
body:has(#theme-toggle:checked) .light-mode-image {
  display: none;
}
body:has(#theme-toggle:checked) .dark-mode-image {
  display: block;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}
.hero-overlay {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 1rem 0;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.page-header {
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}
.page-header .hero-overlay {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: .5rem;
}
.card-grid {
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.card {
  flex: 0 0 220px;
  background: var(--surface);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
}
.card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-content {
  padding: 1rem;
  text-align: center;
}
.blog-grid .card {
  flex: 0 0 340px;
}
.post-meta {
  font-size: .85rem;
  opacity: .7;
  margin-bottom: .5rem;
}
.card-content h3 {
  margin-bottom: .5rem;
}
.card-content .btn {
  display: inline-block;
  margin-top: 1rem;
}
.about {
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
}
.about-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-item.image-right {
  grid-template-columns: 1fr 400px;
}
.about-item.image-right .about-image {
  order: 2;
}
.about-item.image-right .about-content {
  order: 1;
}
.about img {
  width: 100%;
  border-radius: 24px;
}
.about-content p {
  margin-top: 1rem;
}
.testimonials {
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
}
.testimonial-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.testimonial {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 20px;
}
.contact {
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.faq,
.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
}
details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
summary {
  cursor: pointer;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.row {
  display: flex;
  gap: 1rem;
}
input,
textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
html,
body {
  min-height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  transition: 0.25s;
}
main {
  flex: 1;
  padding-top: 70px;
}
footer {
  margin-top: 4rem;
  padding: 1rem;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
  }
  #menu-toggle:checked ~ .nav-menu {
    display: flex;
  }
  .about-item,
  .about-item.image-right {
    grid-template-columns: 1fr;
  }
  .about-item.image-right .about-image {
    order: unset;
  }
  .about-item.image-right .about-content {
    order: unset;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .row {
    flex-direction: column;
  }
}
/*# sourceMappingURL=main.css.map */
