.main-header {
    background-color: var(--color-chiffon-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 110px;
    position: fixed;
    top: 0;
    transition: top 0.3s ease;
    width: 100%;
    z-index: 1000;
}

.header-container {
    align-items: center;
    display: flex;
    height: 110%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.logo-highlight {
    color: var(--color-rusty-red);
}

.logo-img {
    display: block;
    height: 100px;
    margin-bottom: 15px;
    width: auto;
}

.logo-link {
    align-items: center;
    display: flex;
    text-decoration: none;
}

/* Fallback text styling (hidden while image is working) */
.logo-text-fallback {
    color: var(--color-text-dark);
    display: none;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-rusty-red);
}

@media (max-width: 768px) {
  .main-header {
    height: 90px;
  }

  .header-container {
    flex-direction: row;
    gap: 10px;
    height: 100%;
    padding: 0 15px;
  }

  .logo-img {
    height: 65px;
    margin-bottom: 0;
  }

  .navbar {
    gap: 15px;
  }

  .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-header {
    height: 100px;
  }

  .header-container {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }

  .logo-img {
    height: 50px;
  }

  .navbar {
    gap: 20px;
  }
}