/* Responsive styles */
@media (max-width: 700px) {
  .container {
    padding: 24px 8px;
    max-width: 98vw;
  }
  .footer-content {
    padding: 10px 12px;
    max-width: 98vw;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-copy {
    font-size: 0.95rem;
    text-align: center;
  }
  .logo img {
    width: 160px;
    margin-bottom: 8px;
  }
  h1 {
    font-size: 1.3rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .about-section h2 {
    font-size: 1.1rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px 2px;
    max-width: 100vw;
  }
  .footer-content {
    padding: 8px 4px;
    max-width: 100vw;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .footer-copy {
    font-size: 0.9rem;
    text-align: center;
  }
  .logo img {
    width: 120px;
    margin-bottom: 8px;
  }
  h1 {
    font-size: 1.05rem;
  }
  .subtitle {
    font-size: 0.95rem;
  }
  .about-section h2 {
    font-size: 1rem;
  }
  .about-section p {
    font-size: 0.9rem;
  }
  .footer-social a {
    font-size: 1.3rem;
    margin-right: 10px;
  }
}
/* Contact info icons color */
.contact-info i[data-feather="mail"] {
    stroke: var(--crimson) !important;
}
.contact-info i[data-feather] {
    stroke: var(--crimson);
    transition: stroke 0.2s;
}
.contact-info a:hover i[data-feather],
.contact-info i[data-feather]:hover {
    stroke: var(--saffron);
}
/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.6s;
}
.fade-in-up.delay-4 {
  animation-delay: 0.8s;
}
.fade-in-up.delay-5 {
  animation-delay: 1s;
}

.footer-social a {
  transition: color 0.2s, transform 0.2s, opacity 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.footer-social.animated a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
/* Footer styles */
.site-footer {
  width: 100%;
  background: var(--dark-green);
  color: #fff !important;
  position: relative;
  z-index: 2;
  padding: 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 12px 32px;
}

.footer-social a {
  color: var(--saffron);
  font-size: 1.7rem;
  margin-right: 16px;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social a:hover {
  color: #fff !important;
  transform: scale(1.15);
}
.footer-copy {
  font-size: 1rem;
  text-align: right;
  color: #FFF;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Color variables */
:root {
    --kelly-green: #5bb748ff;
    --sea-green: #098b4fff;
    --dark-green: #16302bff;
    --saffron: #e7bb41ff;
    --crimson: #d7263dff;
}
.about-section {
    background: none;
    border-radius: 0;
    padding: 18px 16px;
    margin-bottom: 24px;
    color: #fff;
    box-shadow: none;
}

.about-section h2 {
    color: var(--kelly-green);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.about-section p {
    font-size: 1rem;
    margin: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--dark-green);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.container {
    background: none;
    border-radius: 16px;
    box-shadow: none;
    padding: 40px 32px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.logo img {
    width: 240px;
    margin-bottom: 2px;
    filter: none;
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.logo img:hover {
    transform: scale(1.08);
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--saffron);
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #fff;
}

.contact-info {
    margin-bottom: 24px;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info p {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
    justify-content: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    color: var(--saffron);
    font-size: 2rem;
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
.contact-info i[data-feather], .social-links i[data-feather] {
    display: inline-flex;
    align-items: center;
    height: 1.2em;
    margin-right: 0.2em;
}
}

.social-links a:hover {
    color: var(--crimson);
    transform: scale(1.15);
}

/* Hero background image */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
    filter: blur(8px);
}
