/* =========================================
   NAVBAR
   Stable • Clean • Responsive
========================================= */

* {
  box-sizing: border-box;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  margin: 0;
  padding: 0;

  background: #ffffff;
  border-bottom: 1px solid #eeeeee;

  z-index: 9999;
}

/* =========================================
   NAV CONTAINER
========================================= */

.nav-container {
  width: 100%;
  max-width: 1250px;

  height: 90px;

  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.nav-logo {
  display: flex;
  align-items: center;

  width: 260px;
  height: 90px;

  margin: 0;
  padding: 0;

  flex-shrink: 0;

  text-decoration: none;
}

.nav-logo-img {
  display: block;

  width: 250px;
  height: auto;

  max-width: none;

  margin: 0;
  padding: 0;

  object-fit: contain;
}

/* =========================================
   NAVIGATION MENU
========================================= */

.nav-menu {
  display: flex;
  align-items: center;

  height: 90px;

  margin: 0;
  padding: 0;

  list-style: none;

  gap: 28px;

  flex-shrink: 0;
}

/* =========================================
   NAVIGATION ITEMS
========================================= */

.nav-menu li {
  position: relative;

  display: flex;
  align-items: center;

  height: 90px;

  margin: 0;
  padding: 0;
}

/* =========================================
   NAVIGATION LINKS
========================================= */

.nav-menu li a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 90px;

  margin: 0;
  padding: 0;

  font-family: "Playfair Display", serif;
  font-style: italic;

  font-size: 20px;
  font-weight: 800;

  line-height: 1;

  color: #4d403a;

  text-decoration: none;

  white-space: nowrap;

  outline: none;

  transition: color 0.2s ease;
}

/* =========================================
   ACTIVE LINK
========================================= */

.nav-menu li a.active {
  color: #f2a12f;

  font-size: 17px;
  font-weight: 700;
}

/* =========================================
   HOVER
========================================= */

.nav-menu li a:hover {
  color: #f2a12f;
}

/* =========================================
   ACTIVE UNDERLINE
========================================= */

.nav-menu li a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 17px;

  height: 2px;

  background: #f2a12f;

  border-radius: 10px;

  opacity: 0;

  pointer-events: none;
}

.nav-menu li a.active::after {
  opacity: 1;
}

/* =========================================
   FOCUS
========================================= */

.nav-menu li a:focus {
  outline: none;
}

.nav-menu li a:focus-visible {
  outline: none;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1150px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-logo {
    width: 220px;
  }

  .nav-logo-img {
    width: 215px;
  }

  .nav-menu {
    gap: 20px;
  }

  .nav-menu li a,
  .nav-menu li a.active {
    font-size: 15px;
  }
}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 950px) {
  .navbar {
    height: auto;
  }

  .nav-container {
    height: auto;
    min-height: 90px;

    flex-direction: column;

    justify-content: center;

    padding: 15px 20px;

    gap: 10px;
  }

  .nav-logo {
    width: auto;
    height: 65px;
  }

  .nav-logo-img {
    width: 240px;
    height: auto;
  }

  .nav-menu {
    width: 100%;
    height: auto;

    justify-content: center;

    flex-wrap: wrap;

    gap: 5px 20px;
  }

  .nav-menu li {
    height: 40px;
  }

  .nav-menu li a,
  .nav-menu li a.active {
    height: 40px;

    font-size: 15px;
  }

  .nav-menu li a::after {
    bottom: 2px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .nav-container {
    padding: 12px 15px;
  }

  .nav-logo {
    height: 55px;
  }

  .nav-logo-img {
    width: 210px;
  }

  .nav-menu {
    gap: 7px 14px;
  }

  .nav-menu li {
    height: 35px;
  }

  .nav-menu li a,
  .nav-menu li a.active {
    height: 35px;

    font-size: 14px;
  }

  .nav-menu li a::after {
    bottom: 0;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 400px) {
  .nav-logo-img {
    width: 190px;
  }

  .nav-menu {
    gap: 6px 11px;
  }

  .nav-menu li a,
  .nav-menu li a.active {
    font-size: 13px;
  }
}









































/* =========================================
   NAVBAR
========================================= */

* {
    box-sizing: border-box;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    background: #ffffff;
    border-bottom: 1px solid #eeeeee;

    z-index: 9999;
}

.nav-container {
    width: 100%;
    max-width: 1250px;

    height: 90px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.nav-logo {
    display: flex;
    align-items: center;

    width: 260px;
    height: 90px;

    flex-shrink: 0;

    text-decoration: none;
}

.nav-logo-img {
    display: block;

    width: 250px;
    height: auto;

    max-width: none;
}


/* =========================================
   NAVIGATION MENU
========================================= */

.nav-menu {
    display: flex;
    align-items: center;

    height: 90px;

    margin: 0;
    padding: 0;

    list-style: none;

    gap: 28px;
}

.nav-menu li {
    display: flex;
    align-items: center;

    height: 90px;
}

.nav-menu li a {
    position: relative;

    display: flex;
    align-items: center;

    height: 90px;

    font-family: "Playfair Display", serif;
    font-style: italic;

    font-size: 17px;
    font-weight: 700;

    color: #4d403a;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}


/* =========================================
   HOVER / ACTIVE
========================================= */

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f2a12f;
}

.nav-menu li a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;

    background: #f2a12f;

    border-radius: 10px;

    opacity: 0;

    transition: opacity 0.2s ease;
}

.nav-menu li a.active::after {
    opacity: 1;
}


/* =========================================
   HAMBURGER BUTTON
========================================= */

.nav-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;
}

.nav-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    background: #4d403a;

    border-radius: 3px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}


/* =========================================
   HAMBURGER ACTIVE
========================================= */

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1150px) {

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo {
        width: 220px;
    }

    .nav-logo-img {
        width: 215px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 15px;
    }
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 950px) {

    .navbar {
        height: 80px;
    }

    .nav-container {
        height: 80px;

        padding: 0 25px;

        flex-direction: row;
    }


    /* Logo */

    .nav-logo {
        width: auto;
        height: 80px;
    }

    .nav-logo-img {
        width: 220px;
    }


    /* Hamburger */

    .nav-toggle {
        display: flex;
    }


    /* Menu */

    .nav-menu {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        height: auto;

        padding: 15px 20px 25px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 0;

        visibility: hidden;
        opacity: 0;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* Open menu */

    .nav-menu.active {
        visibility: visible;

        opacity: 1;

        transform: translateY(0);
    }


    .nav-menu li {
        width: 100%;
        height: auto;

        display: flex;
        justify-content: center;
    }

    .nav-menu li a {
        width: 100%;
        max-width: 350px;

        height: auto;

        padding: 13px 10px;

        justify-content: center;

        font-size: 17px;
    }


    .nav-menu li a::after {
        bottom: 5px;

        left: 35%;
        right: 35%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .navbar {
        height: 70px;
    }

    .nav-container {
        height: 70px;

        padding: 0 15px;
    }


    .nav-logo {
        height: 70px;
    }

    .nav-logo-img {
        width: 190px;
    }


    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-toggle span {
        width: 26px;
        height: 3px;
    }


    .nav-menu {
        top: 70px;

        padding: 12px 15px 20px;
    }

    .nav-menu li a {
        font-size: 16px;

        padding: 12px 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .nav-logo-img {
        width: 170px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-menu li a {
        font-size: 15px;
    }
}
