/* Import section-specific styles */
@import url('styles/nav.css');
@import url('styles/welcome.css');
@import url('styles/service.css');
@import url('styles/about.css');
@import url('styles/partners.css');
@import url('styles/contact.css');
@import url('styles/footer.css');

/* General styles */
body, html {
  margin: 0;
  padding: 0;
  color: #3d0f1e;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  background-color: #f9d6ac;
  scroll-behavior: smooth;
}

p {
  font-family: 'LT Woodchuck', serif;
  font-weight: 400;
}

section {
  position: relative;
  height: 100vh;
  padding: 50px;
  box-sizing: border-box;
}

section h1 {
  position: relative;
  display: inline-block;
  padding: 55px 0 10px;
  color: #3d0f1e;
  top: -50px;
  margin: 0;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, transparent, #772b1b, transparent);
  opacity: 0.5;
}

#contact, #our-partners {
  height: fit-content;
}

/* General column container */
.col-container {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.col-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.col-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.col-item a:not(.menu-links) {
  color: inherit;
  text-decoration: none;
}

/* Smooth scroll offset for fixed nav */
html {
  scroll-padding-top: 80px;
}

/* General responsive adjustments */
@media (max-width: 625px) {
  section {
    padding: 30px 20px;
  }

  section h1 {
    top: -30px;
  }
}

@media (max-height: 600px) {
  #our-service, #contact {
    height: fit-content;
  }
}