body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #0B1D2A;
}

img {
    max-width: 100%;
    height: auto;
}

.alert{
    margin-bottom: 0;
    border-radius: 0;
}

header {
    background: #e1d2be;
    color: #0B1D2A;
    text-align: center;
    padding: 60px 20px 20px;
}

header a {
    margin: 10px;
    padding: 10px 20px;
    background: #00b5b5;
    color: #0B1D2A;
    text-decoration: none;
    border-radius: 5px;
}

h2 {
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

.hero {
  padding: 60px 20px 70px;
}

/* Logo */
.logo {
  max-width: 90%; /* adjust if needed */
  margin-bottom: 15px;
  height: auto;
}

/* Tagline */
.tagline {
  margin: 0 auto 25px;
  max-width: 600px;
  line-height: 1.4;
  opacity: 0.9;
  color: #0B1D2A;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.social-icons a {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #00B5B5; /* your teal */
  color: white;

  border-radius: 10px;
  text-decoration: none;

  font-size: 20px;

  transition: all 0.2s ease;
}

.social-icons a:hover {
  background-color: #0B1D2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-icons a {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Stagger effect */
.social-icons a:nth-child(1) { animation-delay: 0.1s; }
.social-icons a:nth-child(2) { animation-delay: 0.2s; }
.social-icons a:nth-child(3) { animation-delay: 0.3s; }
.social-icons a:nth-child(4) { animation-delay: 0.4s; }
.social-icons a:nth-child(5) { animation-delay: 0.5s; }
.social-icons a:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


section {
  padding: 40px 20px;
  text-align: center;
}


section:nth-of-type(odd) {
  background-color: #8fbcbc;
  background:
    linear-gradient(to bottom, #e1d2be 0px, transparent 60px),
    linear-gradient(to top, #e1d2be 0px, transparent 60px),
    #8fbcbc;
    padding: 60px 20px; /* slightly tighter for teal */
}

section:nth-of-type(even) {
  background-color: #e1d2be; /* slightly lighter than header */
   
}


.gallery img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
}

form input, form textarea {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
}

button {
    background: #FF6F3C;
    color: white;
    border: none;
    padding: 10px 20px;
}

.carousel-item {
    height: 400px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.carousel-img-wrapper {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
}

.product-card {
  border: 3px solid #00B5B5;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.product-card:hover {
  border-color: #FF6F3C; /* your orange accent */
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card img {
  height: 300px;
  object-fit: cover;
}

footer {
  padding: 40px 20px;
  text-align: center;
  background-color: #e1d2be; /* or teal depending on what you want */
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 15px 40px;
  }
}

@media (max-width: 576px) {
  .social-icons {
    gap: 8px;
    flex-wrap: wrap; /* 👈 allows wrapping if needed */
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}


@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 25px 15px;
  }

  section:nth-of-type(odd) {
    background:
      linear-gradient(to bottom, #e1d2be 0px, transparent 30px),
      linear-gradient(to top, #e1d2be 0px, transparent 30px),
      #8fbcbc;
  }
}

