/* fredoka-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 300;
  src: url('fredoka-v17-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fredoka-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400;
  src: url('fredoka-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fredoka-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 500;
  src: url('fredoka-v17-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fredoka-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  src: url('fredoka-v17-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fredoka-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  src: url('fredoka-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --color-primary: #FF6C33;
  --color-background: #FFE9DE;
  --color-text: #333333;
  --color-text-light: #666666;
  --font-family: 'Fredoka', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --border-radius: 2rem;
  --transition: all 0.3s ease-in-out;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.2;
  margin: var(--spacing-lg) 0;
  text-align: center;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

/* Layout */
.container {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Logo */
.logo-section {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  animation: fadeInDown 0.8s ease-out;
}

.logo {
  width: clamp(80px, 15vw, 120px);
  height: auto;
  display: block;
  margin: 0 auto var(--spacing-sm);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.2em;
}

/* Header */
header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  animation: fadeInDown 1s ease-out 0.2s both;
}

/* Illustration */
.illustration-section {
  text-align: center;
  margin: var(--spacing-xl) 0;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Description */
.description-section {
  margin: var(--spacing-xl) 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.description {
  margin-bottom: var(--spacing-md);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-primary);
}


.call-to-action {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin: var(--spacing-md) auto;
  display: block;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 108, 51, 0.2);
  text-decoration: none;
}

.cta-button:hover {
  background-color: #E5591F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 108, 51, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

.phone-button {
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--color-background);
  padding: var(--spacing-xl) var(--spacing-md);
  margin-top: var(--spacing-xl);
  border-top: 2px solid rgba(255, 108, 51, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.footer-column {
  text-align: center;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.footer-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-primary);
  }

.footer-content a {
  color: var(--color-primary);
  font-weight: 500;
  word-break: break-word;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (min-width: 768px) {
  .container { padding: var(--spacing-lg); }
  h1 { font-size: 3rem; }
  .description { font-size: 1.05rem; }
  .footer-column { text-align: left; }
}

@media (min-width: 1024px) {
  .container { padding: var(--spacing-xl); }
  .cta-button { padding: 1rem var(--spacing-xl); font-size: 1.1rem; }
  footer { padding: var(--spacing-xl) 0; }
}

@media (max-width: 480px) {
  :root { --spacing-lg: 1.5rem; --spacing-xl: 2rem; }
  h1 { font-size: 1.75rem; }
  .description { font-size: 0.95rem; }
  .cta-button { padding: 0.875rem var(--spacing-md); font-size: 0.95rem; }
  footer { padding: var(--spacing-lg) var(--spacing-sm); gap: var(--spacing-md); }
  .footer-column h3 { font-size: 1rem; }
  .footer-content { font-size: 0.9rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Dark mode optional */
@media (prefers-color-scheme: dark) {
  :root { --color-text: #f0f0f0; --color-text-light: #cccccc; }
}
