/**
 * Hero Block - Standalone CSS
 * This file can be loaded independently when the hero block is used
 */
/**
 * SCSS Variables
 * Theme-wide variables for colors, spacing, typography, etc.
 */
/* ============================================
   Theme Colors (Dark Theme)
   ============================================ */
:root {
  /* Dark Theme (Default) */
  --color-bg-primary: #1a1a1a;
  --color-bg-secondary: #2d2d2d;
  --color-bg-tertiary: #3a3a3a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-text-muted: #b0b0b0;
  --color-accent: #d4af37;
  --color-accent-hover: #f5d76e;
  --color-border: #404040;
  --color-link: #d4af37;
  --color-link-hover: #f5d76e;
  --color-button-bg: #d4af37;
  --color-button-text: #1a1a1a;
  --color-button-hover: #f5d76e;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* SCSS Variables for easier manipulation */
/* Typography */
/* Spacing */
/* Breakpoints */
/* Transitions */
/**
 * Button Component Styles
 */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.btn-primary {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-button-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-button-text);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-accent);
  color: var(--color-button-text);
  text-decoration: none;
}

button.related-service {
  appearance: none;
  outline: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: rgba(212, 175, 55, 0.3);
  color: var(--color-accent);
  padding: 0.3rem;
  border-radius: 0.5rem;
}

.block-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .block-hero {
    min-height: 500px;
    padding: 6rem 0;
  }
}
.block-hero .hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .block-hero .hero-wrapper {
    flex-direction: row;
    max-height: 500px;
  }
}
.block-hero .hero-wrapper .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .block-hero .hero-wrapper .hero-content {
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .block-hero .hero-wrapper .hero-content {
    max-width: 1400px;
    padding: 0 2rem;
  }
}
@media (min-width: 1440px) {
  .block-hero .hero-wrapper .hero-content {
    max-width: 1600px;
    padding: 0 3rem;
  }
}
@media (min-width: 1920px) {
  .block-hero .hero-wrapper .hero-content {
    max-width: 1800px;
    padding: 0 4rem;
  }
}
.block-hero .hero-wrapper .hero-content .hero-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.block-hero .hero-wrapper .hero-content .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .block-hero .hero-wrapper .hero-content .hero-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .block-hero .hero-wrapper .hero-content .hero-title {
    font-size: 4rem;
  }
}
.block-hero .hero-wrapper .hero-content .hero-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}
.block-hero .hero-wrapper .hero-content .hero-cta {
  margin-top: 2rem;
}
.block-hero .hero-wrapper .hero-image {
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .block-hero .hero-wrapper .hero-image {
    max-width: 50%;
  }
}
.block-hero .hero-wrapper .hero-image img {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .block-hero .hero-wrapper .hero-image img {
    max-height: 500px;
  }
}

/* Hero Slider Styles */
.hero-slider {
  width: 100%;
}

.hero-slider .slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.hero-slider .slider-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  gap: 1rem;
}

.hero-slider .slider-slide {
  flex: 0 0 auto;
  width: 100%;
}

.hero-slider .slider-slide img {
  width: 100%;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.hero-slider .slider-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.hero-slider .slider-prev,
.hero-slider .slider-next {
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-slider .slider-prev:hover,
.hero-slider .slider-next:hover {
  background-color: var(--color-accent);
  color: var(--color-button-text);
}

.hero-slider .slider-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* .hero-slider .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider .slider-dot.active,
.hero-slider .slider-dot:hover {
  background-color: var(--color-accent);
  transform: scale(1.2);
} */

/*# sourceMappingURL=hero.css.map */
