/* Custom CSS for AirDome Spaces Landing Page */

:root {
  /* Set our custom color scheme */
  --primary: #ff0000;
  --secondary: #000000;
  --light: #ffffff;
  --dark: #000000;
  --gray: #f0f0f0;
  --darkgray:#eeeeee;
}

/* Override the default color scheme */
.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #d40000;
  border-color: #d40000;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Custom header styling */
.jumbotron-fluid {
  background-color: var(--light);
  color: var(--dark);
}

/* Body styles */
body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
}

/* Navigation styling */
.topnav {
  background-color: var(--darkgray) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topnav .navbar-brand, 
.topnav .nav-link {
  color: var(--dark) !important;
}

.topnav .nav-link:hover {
  color: var(--primary) !important;
}

/* Logo highlighting */
.logo-highlight-1 {
  background-color: var(--primary);
  color: black !important;
  font-weight: bold;
  padding: 4px 0px 4px 8px;
}

.logo-highlight-2 {
  background-color: var(--primary);
  color: white !important;
  padding: 4px 8px;
  font-weight: normal;
  border-radius: 0 4px 4px 0;
}

/* Icon boxes */
.iconbox {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconbox.bg-primary,
.iconbox.text-primary {
  color: white !important;
}

/* Card styling */
.card {
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image gallery styling */
.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  transition: transform 0.5s;
  width: 100%;
  height: auto;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Footer styling */
footer {
  background-color: var(--dark);
  color: var(--light);
}

footer a {
  color: var(--light);
}

footer a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Contact form styling */
.input-round {
  border-radius: 30px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.btn-round {
  border-radius: 30px;
  padding-left: 25px;
  padding-right: 25px;
}

/* Custom divider */
.divider {
  height: 3px;
  width: 50px;
  background: var(--primary);
  margin: 15px auto;
}

/* Section styling */
.section-heading {
  margin-bottom: 50px;
}

/* Image styling */
.img-shadow {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
