/* ==========================================================================
   Jadore - Base
   Tokens, reset, container, buttons
   ========================================================================== */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-bg: #fcdedc;
  --color-primary: #6d3837;
  --color-accent: #c9446c;
  --color-white: #ffffff;
  --color-off-white: #fefefe;

  /* Typography */
  --font-display: 'Corinthia', cursive;
  --font-body: 'Manrope', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-gap: 80px;

  /* Border Radius */
  --radius-card: 20px;
  --radius-btn: 167px;
  --radius-btn-small: 42px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-primary);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-off-white);
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  height: 53px;
}

.btn--contact {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-btn-small);
  font-weight: 600;
  font-size: 18px;
}

/* --- Shared Animations --- */
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-2%, -1%); }
}

@keyframes svcPackReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Base Responsive
   ========================================================================== */
@media (max-width: 480px) {
  .btn--primary {
    width: 100%;
  }
}
