/* Custom Styles for Dome Actions */

/* Header Styling */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

header h1 {
  font-size: 1.875rem;
  color: #1f2937;
}

header nav ul li a {
  transition: color 0.3s ease;
}

/* Hero Section */
#home {
  background-image: linear-gradient(45deg, #FECC03, #786c00);
  color: white;
  padding: 5rem 0;
  text-align: center;
  margin-top: 4rem;
}

#home h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#home button {
  transition: background-color 0.3s ease;
}

#home button:hover {
  background-color: #e5e7eb;
}

/* About Section */
#about {
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

#about h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#about p {
  color: #4b5563;
  line-height: 1.75;
}

/* Services Section */
#services {
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

#services h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#services p {
  color: #4b5563;
  line-height: 1.75;
}

#services .flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

#services .flex div {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
}

#services .flex div .bg-gray-100 {
  flex: none;
}

#services h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#services p {
  color: #4b5563;
}

/* Support Section */
#support .flex div {
  width: 100%;
  max-width: 50%;
  padding: 1rem;
}

#support .flex div .bg-gray-100 {
  flex: none;
}


/* Testimonials Section */
#testimonials {
  background-color: #f9fafb;
  padding: 5rem 0;
  text-align: center;
}

#testimonials h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#testimonials blockquote {
  font-style: italic;
  color: #4b5563;
}

#testimonials p {
  font-weight: bold;
  color: #1f2937;
  margin-top: 0.5rem;
}

/* Contact Section */
#contact {
  background-color: white;
  padding: 5rem 0;
}

#contact h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

#contact form {
  max-width: 28rem;
  margin: 0 auto;
}

#contact form input,
#contact form textarea {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem;
  width: 100%;
}

#contact form input:focus,
#contact form textarea:focus {
  outline: none;
  border-color: #FECC03;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

#contact button {
  background-image: linear-gradient(45deg, #FECC03, #786000);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #FECC03;
}

/* Footer */
footer {
  background-color: #37351f;
  color: white;
  padding: 1.5rem 0;
}

footer ul li a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #FECC03;
}

/* Carousel Styles */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-item:not(.active) {
  display: none;
}

/* 3D Subscribe Button */
#subscribeButton {
  background-color: (45deg, #FECC03, #786000);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#subscribeButton:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1), 0 12px 16px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.5s;
}
