/*
Theme Name: F4ncyPrint
Theme URI: https://f4ncyprint.com
Author: Stefan Petrov
Author URI: https://f4ncyprint.com
Description: Minimal custom WordPress theme for personalized thermoses.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: f4ncyprint
*/

:root {
  --sage: #A7B6A3;
  --clay: #FF6A3D;
  --text: #1C1C1C;
  --background: #ffffff;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

section {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--sage);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1rem;
  transition: background 0.3s;
}

.cta-button:hover {
  background: var(--clay);
}

.site-header {
  background: white;
  border-bottom: 1px solid #e1e1e1;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  display: block;
  max-height: 60px;
}

.logo picture,
.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.site-nav li {
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: var(--clay);
}

.language-switcher {
  margin-left: 2rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.language-switcher a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.language-switcher a:hover {
  color: var(--clay);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  margin-left: auto;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .site-nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 0.5rem;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
  }

  .language-switcher {
    margin-top: 1rem;
    margin-left: 0;
  }
}

.site-footer {
  background: var(--sage);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}
.intro,
.problem,
.features,
.testimonials,
.cta,
.faq {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1rem auto;
  padding: 1rem;
  border-left: 4px solid var(--sage);
  background: #f4f4f4;
}

.faq details {
  text-align: left;
  margin-bottom: 1rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
}
