@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --frivalea-brand: #0f172a; /* Dark brand color for buttons/text */
  --frivalea-brand-dark: #020617;
  --frivalea-accent: #d4af37; /* Gold accent */
  --frivalea-bg: #ffffff;
  --frivalea-bg-alt: #f8fafc;
  --frivalea-text: #1e293b;
  --frivalea-text-light: #64748b;
  --frivalea-border: #e2e8f0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--frivalea-text);
  background-color: var(--frivalea-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gloock", serif;
  color: var(--frivalea-brand);
  font-weight: 400; /* Gloock is typically 400 weight */
  line-height: 1.1;
}

/* Base Styles */
.page-wrapper {
  overflow: hidden;
}

/* Frivalea Primary Button */
.frivalea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--frivalea-brand);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid var(--frivalea-brand);
}

.frivalea-btn:hover {
  background-color: var(--frivalea-brand-dark);
  border-color: var(--frivalea-brand-dark);
}

.frivalea-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 500;
  color: var(--frivalea-brand);
  background-color: transparent;
  border: 1px solid var(--frivalea-border);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 15px;
}

.frivalea-btn-outline:hover {
  border-color: var(--frivalea-brand);
}

/* Section Padding */
.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 1024px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.container-custom {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Custom Dividers */
.frivalea-divider {
  height: 1px;
  background-color: var(--frivalea-border);
  width: 100%;
  margin: 2rem 0;
  position: relative;
}

.frivalea-divider-short {
  height: 2px;
  background-color: var(--frivalea-brand);
  width: 40px;
  margin-bottom: 1.5rem;
}

/* Light / Dark Mode utilities specific to sections */
.bg-dark-section {
  background-color: var(--frivalea-brand);
  color: #ffffff;
}

.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6 {
  color: #ffffff;
}

.bg-dark-section .frivalea-divider-short {
  background-color: #ffffff;
}

/* Image styling */
.img-radius {
  border-radius: 4px;
}

/* Animations */
.slide-to-top {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-to-top.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee specific fixes */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
