:root {
  /* Fonts & typography */
  --font-body: 'Noto Sans', sans-serif;
  --line-height: 1.5;

  /* Colors */
  --color-text: #333;
  --color-bg: #faf9f5;
  --color-border: #e5e5e5;
  --color-primary: #FF7357;
  --color-primary-hover: #d8492c;
  --color-secondary-text: #4f4f4f;
  --color-secondary-hover-bg: #efefef;
  --color-link-special: #0D6EFD;
  --color-footer-bg: #636363;
  --color-footer-text: #FFFFFF;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrapper {
  flex-grow: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  color: var(--color-text);
}

.logo img {
  margin-right: 8px;
  padding: 6px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.site-nav li {
  margin-left: 20px;
}

.site-nav a {
  font-weight: 400;
  color: #555;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: #000;
}


/* Hamburger & mobile nav */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 10px;
}

/* Search box */
.search-form input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 100px 0 60px;
}

.hero h1 {
  font-size: 2.5em;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero .buttons {
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  transition: background 0.2s;
  text-align: center;
}

.btn-main {
  background: var(--color-primary);
  color: var(--color-footer-text);
}

.btn-main:hover {
  background: var(--color-primary-hover);
}

.btn-secondary {
  background: var(--color-footer-text);
  color: var(--color-secondary-text);
  border: 1px solid var(--color-primary);
  font-weight: 400;
}

.btn-secondary:hover {
  background: var(--color-secondary-hover-bg);
}

.tagline {
  font-size: 1em;
  color: #666;
}

.divider {
  display: block;
  margin: 40px auto;
  border-bottom: 1px solid var(--color-border);
  max-width: 768px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  text-align: center;
}

.feature svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  stroke: currentColor;
  fill: currentColor;
}

.feature h3 {
  font-size: 1.25em;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  color: #555;
}

.feature p a {
  color: var(--color-link-special);
}

/* Footer */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 10px 0;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

footer li {
  margin: 0 15px;
}

footer a {
  color: var(--color-footer-text);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: center;
  }

  .hamburger-btn {
    display: block;
  }
  
  .nav-wrapper {
    display: none; /* Hide nav by default on small screens */
    width: 100%; /* Allow nav to take full width */
    text-align: center;
  }
  
  .nav-wrapper.nav-open {
    display: block; /* Show nav when open */
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
  }

  .site-nav li {
    margin: 0 0 10px;
  }

  .hero {
    padding: 50px 0 30px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .btn {
    margin: 0;
  }

  footer ul {
    flex-direction: column;
  }

  footer li {
    margin: 5px 0;
  }
}
