/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #38B6FF;
  padding-top: 56px; /* Height of fixed navbar */
}

/* Container Styles */
.container {
  width: 80%;
  margin: 0 auto;
}

/* Spacer Styles */
.spacer {
  padding-top: 20px;
  background-color: #38B6FF;
  border-top: 10px solid black;
  margin-bottom: 20px;
}

/* Video Gallery Styles */
.video-gallery {
  margin: 2rem 0;
  background-color: #38B6FF;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Carousel Styles */
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Video Card Styles */
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(246, 243, 243, 0.1);
  transition: transform 0.3s ease;
  background-color: white;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: #333;
  margin-bottom: 1rem;
}

.card-text {
  color: #666;
}

/* Contact Form Styles */
#contactForm {
  background-color: rgba(255, 255, 255, 0.968);
  padding: 20px;
  border-radius: 10px;
}

#contactForm .form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 5px;
  padding: 12px;
}

#contactForm .form-control:focus {
  background-color: white;
  box-shadow: none;
}

#contactForm textarea.form-control {
  min-height: 120px;
}

#contactForm .btn-primary {
  background-color: #38B6FF;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#contactForm .btn-primary:hover {
  background-color: #2a8fd1;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  
  #contactForm {
    padding: 15px;
  }
  
  .card {
    margin-bottom: 1rem;
  }
} 