@import url("responsive.css");

html,
body,
.view {
  height: 100vh;
}

#navbar {
  overflow: hidden;
  padding: 25px 10px;
  transition: 0.4s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  font-size: 0.9rem;
}

.pink-color {
  color: #df2bb7;
}

.bg-pink-color {
  background-color: #df2bb7 !important;
}

.purple-color {
  color: #9c27b0;
}

.bg-purple-color {
  background-color: #9c27b0;
}

.bg-purple2-color {
  background-color: rgba(133, 82, 160, 0.98) !important;
}

.bg-footer {
  background-color: #2b2c2c;
}

.cs-hr {
  border-top: 1px solid #5d5d5d;
}

#cs-card p {
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

#cs-card:hover p {
  color: #fff !important;
}

#cs-card:hover {
  background-color: #df2bb7;
  color: #fff !important;
  transition: background-color 0.3s ease;
}

.body-temp {
  z-index: 5;
  min-height: calc(100vh - 200px);
}

#colorfull-logo,
#colorful-logo {
  display: none;
}

#white-logo {
  display: inherit;
}

#carousel-example-multi img {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

#carousel-example-multi img:hover {
  opacity: 1.0;
}

#carousel-example-multi .carousel-indicators li {
  width: 10px;
  height: 10px;
}

.classic-tabs .nav li a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  text-transform: capitalize;
}

.classic-tabs .nav li a:not(.active) {
  font-weight: bold;
}

.classic-tabs .nav li a.active {
  font-weight: bold;
  color: black;
}

footer {
  z-index: 1;
  width: 100%;
  position: relative;
}

footer h5 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

footer a {
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.8;
}

.cs-placeholder textarea::placeholder,
.cs-placeholder input::placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

.cs-placeholder textarea.md-textarea:focus:not([readonly]),
.cs-placeholder input[type="text"]:focus:not([readonly]) {
  box-shadow: 0 1px 0 0 #df2bb7 !important;
  border-bottom: 1px solid #df2bb7 !important;
}

.btn-pulse {
  width: 200px;
  height: 100%;
  margin: 0 auto 0;
  background: #fff;
  cursor: pointer;
}

.btn-pulse::before {
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  display: block;
  width: 100px;
  height: 100px;
  font-size: 1.3em;
  text-align: center;
  margin-left: -30px;
  padding-left: 15px;
  border: none;
  border-radius: 50%;
  background: #18213b;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  animation: pulse 1.5s infinite;
}

.btn-pulse:hover::before {
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* Card hover effects */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Modern button style */
.btn {
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form input improvements */
.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 0.95rem;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: #df2bb7;
}

/* Video player improvements */
.video-fluid {
  border-radius: 8px;
  width: 100%;
}

/* Flash messages */
.alert {
  border-radius: 8px;
  border: none;
}

/* Section spacing */
section {
  padding: 60px 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Text selection color */
::selection {
  background: rgba(223, 43, 183, 0.2);
}
