/* ===============================
   FONT FACE (SELF-HOSTED AFACAD)
================================== */
@font-face {
    font-family: 'Afacad';
    src: url('../fonts/Afacad-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Afacad';
    src: url('../fonts/Afacad-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* ===============================
   GLOBAL STYLES
================================== */
body {
    margin: 0;
    font-family: 'Afacad', sans-serif;
    background-color: #F4EFE6;
    color: #1F1E1B;
}

ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; }

.logo img {
    transform: scale(1.3);
    transform-origin: center;
}

/* ===============================
   HEADER
================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #082717;
    color: #E8D8B8;
    padding: 1rem 2rem;
    height: 15px;
}

/* ===============================
   BODY/HERO SECTION
================================== */
.hero {
    position: relative;
    text-align: center;
    color: #1F1E1B;
}

.hero-image {
    display: block;
    width: 100%;
    height: 90vh;
    object-fit: cover;
    filter: brightness(90%);
}

.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 550px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-box {
    background: rgba(244, 239, 230, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem 1.75rem;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.hero-box h1 {
    margin: 0.8rem  1.7rem;
    font-size: 4rem;
}

.hero-box h2 {
    margin: -0.5rem 0 0.5rem;
    font-size: 2.5rem;
}

.hero-box h3 {
    margin: 1.3rem 0 0.9rem;
    font-size: 1.9rem;
}

.hero-box p {
    margin: 1rem 0 1.3rem;
    font-size: 1.5rem;
}

.hero-logo img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.logo-body img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 1.2rem 1rem 1rem;
}

/* ===============================
   FOOTER (Green theme)
================================== */
.footer {
    background-color: #082717;
    color: #E8D8B8;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-footer img {
    height: 60px;
    width: auto;
    transform: scale(1.3);
    opacity: 0.9;
}

.footer-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.email-icon {
  height: 60px;
  width: auto;       /* keeps aspect ratio correct */
  display: block;
  margin: 0 auto;
  border-radius: 13px;
}