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

html {
    scroll-behavior: smooth;
}

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

.canada-leaf-icon {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    vertical-align: middle;
}

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

header {
  position: relative;
  background-attachment: fixed;
  background-image: url('images/HeaderBackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* keep your existing padding */
  padding: 60px 20px 20px;
}

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

@media (max-width: 768px) {
  header {
    background-position: center top;
  }
}

/* header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(225, 210, 190, 0.75); 
  z-index: 0;
}
 */

h2 {
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

/* .hero {
  padding: 60px 20px;
} */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Base (mobile) */
.hero-inner {
  display: block;
  text-align: center;
}

/* Desktop */
@media (min-width: 768px) {
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    text-align: left;
  }

  .hero-left {
    display: flex;
    align-items: center;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 450px;
  }
}

/* Logo */
.logo {
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logo {
    margin: 0;
    max-width: 300px;
  }
}

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

@media (min-width: 768px) {
  .social-icons {
    justify-content: flex-start;
  }
}

/* Tagline */
.tagline {
  font-size: 1.15rem;
  max-width: 450px;
  margin: 15px auto 20px;
  line-height: 1.5;
}

.social-icons a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00B5B5;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.2s ease;

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

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



/* 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;
  }
}

