/**
 * Hero Slider Styles
 * Controls, dots, favicon, and labels for the hero slider
 */

/* Hero Controls - Hidden */
.hero__controls {
  display: none !important;
}

/* Hero Dots */
.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.hero__dot--active {
  background-color: rgb(255, 255, 255);
  width: 2rem;
}

.hero__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Hero Slide Favicon - Positioned at BOTTOM right */
.hero__slide-favicon {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  opacity: 0.9;
  z-index: 10;
  transition: all 0.2s;
  filter: invert(1);
  pointer-events: none;
}

.hero__slide-favicon:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .hero__slide-favicon {
    width: 40px;
    height: 40px;
    bottom: 2rem;
    right: 2rem;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 6rem 0;
  }
}

.hero__content--center {
  justify-content: center;
  text-align: center;
}

/* Hero Text */
.hero__text {
  max-width: 700px;
  color: rgb(255, 255, 255);
}

.hero__content--center .hero__text {
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Label (Tagline) */
.hero__label {
  display: inline-block;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

/* Display Headings */
.display-1 {
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .display-1 {
    font-size: 3.75rem;
  }
}

/* Lead Paragraph - Only white in hero */
.hero__slide .lead,
.hero__content .lead {
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Actions */
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__content--center .hero__actions {
  justify-content: center;
}

/* Hero Split Layout Styles */
.hero__split-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .hero__split-container {
    flex-direction: row;
  }
}

.hero__split-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 1, 5);
  padding: 2rem;
}

.hero__split-content .hero__text {
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero__split-content {
    padding: 4rem;
  }
}

.hero__split-image {
  flex: 1;
  position: relative;
}

.hero__founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__founder-info {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  background: linear-gradient(
    135deg,
    rgba(0, 1, 5, 0.95) 0%,
    rgba(3, 19, 30, 0.90) 100%
  );
  padding: 1.5rem 2rem;
  border-left: 4px solid rgb(0, 1, 5);
  backdrop-filter: blur(10px);
  border-radius: 0;
  width: fit-content;
}

.hero__founder-name {
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero__founder-role {
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ==================
   BUTTON STYLES
   ================== */

/* Base Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button */
.btn-primary {
  background-color: rgb(0, 1, 5);
  color: rgb(255, 255, 255);
  border-color: rgb(0, 1, 5);
}

.btn-primary:hover {
  background-color: rgb(0, 1, 5);
  color: rgb(255, 255, 255);
  border-color: rgb(0, 1, 5);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.03);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Primary Inverse Button */
.btn-primary-inverse {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 1, 5);
  border-color: rgb(255, 255, 255);
}

.btn-primary-inverse:hover {
  background-color: rgb(250, 250, 250);
  color: rgb(0, 1, 5);
  border-color: rgb(250, 250, 250);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.03);
}

.btn-primary-inverse:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: rgb(0, 1, 5);
  border-color: rgb(0, 1, 5);
}

.btn-secondary:hover {
  background-color: rgb(0, 1, 5);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Secondary Inverse Button */
.btn-secondary-inverse {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

.btn-secondary-inverse:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 1, 5);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.03);
}

.btn-secondary-inverse:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Button Sizes */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
