/* ========================================
   BASE.CSS - Updated from source
   Generated from source/style.css
   ======================================== */

/* ===== IMPORT GOOGLE FONTS ===== */

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Great+Vibes&display=swap');



/* ===== CSS CUSTOM PROPERTIES ===== */

:root {
  /* Colors */
  --primary-color: #d4a574;
  --primary-dark: #b8935f;
  --brand-primary: #d4a574;
  --brand-primary-light: #e2c296;
  --brand-primary-dark: #b8935f;
  --brand-secondary: #f7f5f3;
  --secondary-color: #f7f5f3;
  --text-color: #333333;
  --text-light: #666666;
  --text-secondary: #666666;
  --white: #ffffff;
  --gray-medium: #e0e0e0;
  
  /* Typography */
  --h1-font-size: 3.5rem;
  --h2-font-size: 2.8rem;
  --h3-font-size: 2.2rem;
  --h4-font-size: 1.8rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Layout */
  --header-height: 5rem;
  --container-max-width: 1200px;
  --container-margin: 0 1.5rem;
  --section-padding: 5rem 0;
  --border-radius: 12px;
  --border-radius-large: 20px;
  --border-radius-small: 8px;
  
  /* Transitions & Effects */
  --transition: all 0.3s ease;
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
}



/* ===== BASE STYLES ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comic Neue', 'Arial', sans-serif;
  font-size: var(--normal-font-size);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}



/* ===== REUSABLE CLASSES ===== */

.container {
  max-width: var(--container-max-width);
  margin: var(--container-margin);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--secondary-color);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section__description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}



/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Comic Neue', 'Arial', sans-serif;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--gray-medium);
}

.btn--outline:hover {
  background-color: var(--text-color);
  color: var(--white);
  border-color: var(--text-color);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}



