/* Font Imports */
@font-face {
  font-family: 'SeasonSerif';
  src: url('../fonts/SeasonSerif-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'CerebriSans';
  src: url('../fonts/CerebriSansPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Global Overscroll Prevention */
html {
  background: #FFFEF2;
  overflow-x: hidden;
  overscroll-behavior: none;
}

body {
  font-family: 'CerebriSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #FFFEF2;
  color: #181818;
  overflow-x: hidden;
  overscroll-behavior: none;
}

/* Add this rule at the end of your new styles/main.css file */

/* This rule says: when the body has the class "homepage", find the
   .page-title-label inside it and hide it completely. */

.homepage .page-title-label {
    display: none;
}

/* New Header Styles */
.page-header {
  padding: 30px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #FFFEF2;
  border: none;
  box-shadow: none;
}

.page-title-label {
  font-size: 16px;
  color: #003310;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.logo-image {
  height: 20px; /* Adjust this to your preferred size */
  width: auto;  /* This maintains aspect ratio */
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #181818;
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.3s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-contact-btn {
  background-color: #F9A0F0;
  color: #fff;
  padding: 8px 30px; /* Updated to match the CTA button size */
  border-radius: 20px;
  font-weight: 500;
}
.nav-contact-btn:hover {
  background-color: #e68ae0;
  opacity: 1;
}

/* === Footer Styles === */
.site-footer {
    background-color: #1C49A6;
    color: #fff;
    padding: 80px 0 40px 0;
    font-size: 15px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-email {
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin: 40px 0;
    color: #fff; /* Ensure it's white */
    text-decoration: none; /* In case it's a link */
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-socials span {
    color: #aaa;
}

.footer-socials .social-icon {
    color: #000;
    background-color: #FFFEF2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-company-info {
    color: #aaa;
    font-size: 14px;
}

/* === Footer Responsive Styles === */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }
    .footer-main {
        flex-direction: column;
        gap: 50px;
    }
    .footer-contact, .footer-socials {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
