@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap";

/* src/styles.scss */
:root {
  --color-primary: #C86A4A;
  --color-secondary: #A47551;
  --color-neutral: #F2E8D5;
  --color-primary-dark: #A85539;
  --color-primary-light: #D9846D;
  --color-secondary-dark: #8B6145;
  --color-secondary-light: #B89270;
  --color-neutral-dark: #E5D7BD;
  --color-neutral-light: #FAF5EB;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-gray-light: #F5F5F5;
  --color-gray: #9E9E9E;
  --color-gray-dark: #424242;
  --font-heading: "Cinzel", serif;
  --font-body: "Lora", serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
  --glass-bg: rgba(242, 232, 213, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: 10px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 56px;
  line-height: 61.6px;
}
h2 {
  font-size: 48px;
  line-height: 52.8px;
}
h3 {
  font-size: 40px;
  line-height: 44px;
}
h4 {
  font-size: 32px;
  line-height: 35.2px;
}
h5 {
  font-size: 24px;
  line-height: 26.4px;
}
h6 {
  font-size: 20px;
  line-height: 22px;
}
.body-1 {
  font-size: 20px;
  line-height: 28px;
}
.body-2 {
  font-size: 18px;
  line-height: 25.2px;
}
.body-3 {
  font-size: 16px;
  line-height: 22.4px;
}
.body-4 {
  font-size: 14px;
  line-height: 19.6px;
}
p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 25.2px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray-dark);
}
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}
.section {
  padding: var(--spacing-3xl) 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in {
  animation: fadeIn 0.8s ease-out;
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}
.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}
.scale-in {
  animation: scaleIn 0.6s ease-out;
}
.gradient-overlay {
  position: relative;
}
.gradient-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      135deg,
      rgba(200, 106, 74, 0.8) 0%,
      rgba(164, 117, 81, 0.7) 100%);
  z-index: 1;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.grid {
  display: grid;
}
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--color-secondary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 44px;
  }
  h2 {
    font-size: 32px;
    line-height: 35.2px;
  }
  h3 {
    font-size: 28px;
    line-height: 30.8px;
  }
  h4 {
    font-size: 24px;
    line-height: 26.4px;
  }
  h5 {
    font-size: 20px;
    line-height: 22px;
  }
  h6 {
    font-size: 18px;
    line-height: 19.8px;
  }
  p,
  .body-2 {
    font-size: 16px;
    line-height: 22.4px;
  }
  .container {
    padding: 0 var(--spacing-sm);
  }
  .section {
    padding: var(--spacing-2xl) 0;
  }
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-neutral);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
