/*
 * Globals
 */
:root,
[data-bs-theme="light"] {
  --bs-body-bg: #f4f4f4;
  --bs-body-color: #000;
  --bs-card-bg: #ffffff;
  --bs-card-border-color: #ddd;
  --bs-card-title-color: #333;
  --bs-card-text-color: #555;
}

[data-bs-theme="dark"] {
  --bs-body-bg: #222;
  --bs-body-color: #fff;
  --bs-card-bg: #333;
  --bs-card-border-color: #444;
  --bs-card-title-color: #fff;
  --bs-card-text-color: #ddd;
}

/* Customize Bootstrap Card */
.card-hero {
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
  color: var(--bs-card-text-color);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.card {
    transition: all 0.3s ease-in-out;
}

/* Card Hover Effect */
.card:hover, .card-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-hero-title {
  color: var(--bs-card-title-color);
}


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #fff;
  background: var(--primary-clr);
  text-shadow: none;
  border: none;
  text-transform: uppercase;
  font-size: 1rem;
  /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  max-width: 90%;
}


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

#logo{
  width: 5.5rem;
  height: 3rem;
}

/** hero */
@media (min-width: 992px) {
  .rounded-lg-3 {
    border-radius: .3rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
    .col-sm-6 {
        width: 100%;
        max-width: 400px;
    }
}

/** feature */
.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
}

.text-shadow-1 {
  text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}

.text-shadow-2 {
  text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}

.text-shadow-3 {
  text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}

.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
}

.feature-icon-small {
  width: 3rem;
  height: 3rem;
}

/** video */
video {
  width: 90vw;
}

/** Information One */
.information-description {
  width: 70%;
}

input {
  opacity: 0.5;
}