/* ================================
   BASIC RESET
=================================*/
nav ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   HEADER STRUCTURE
=================================*/
header.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  position: relative;
  z-index: 100;
    padding: 0;
}

header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8em 1.2em;
  position: relative;
}

/*tel*/

.tel {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #E97C95;
    font-weight: 700;
}
.tel a{
    color: #E97C95;
}
.tel span{
    font-size: 150%;
}

/* ================================
   LOGO
=================================*/
.branding img {
  height: 50px;
  width: auto;
}

/* ================================
   NAVIGATION MENU
=================================*/
nav {
  position: relative;
}

nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8em;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: -30px;
}

nav > ul > li {
  position: relative;
}

nav > ul > li > a {
  display: block;
  padding: 10px 5px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

nav > ul > li > a:hover {
  color: #007acc;
}

/* ================================
   SUBMENU STYLES
=================================*/
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: -50px;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 999;
  padding-left: 0;
}

nav ul li ul li {
  width: 100%;
}

nav ul li ul li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  font-size: 0.95em;
  background: #fff;
  transition: background 0.2s ease;
}

nav ul li ul li a:hover {
  background: #E97C95;
  color: #fff;
}

/* ================================
   HAMBURGER MENU (Mobile Trigger)
=================================*/
#drop i {
  transition: transform 0.2s ease;
}


#drop {
  display: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  /*transition: transform 0.2s ease;*/
}

#drop.active i {
  transform: rotate(90deg);
}
/* ================================
   ACCESSIBILITY & VISUAL CUES
=================================*/
.submenu > a::after {
  content: " ▼";
  font-size: 0.7em;
  position: absolute;
  bottom: -2px;
  right: 42%;
  color: #E97C95;
}

.submenu.open > a::after {
  content: " ▲";
}

/* ================================
   MOBILE STYLES
=================================*/
@media screen and (max-width: 800px) {
  header .wrapper {
    flex-wrap: wrap;
  }
    header.site-header {
        position: fixed;
        top: 0;
        }
    .main__visual{
        padding-top: 112px!important;
    }
    .main_visual_text{
        top: 50%!important;
    }
  #drop {
    display: block;
  }
    .tel{
        display: none;
    }
  nav {
    width: 100%;
  }

  nav > ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
  }

  nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  nav > ul > li > a {
    width: 100%;
    padding: 14px;
  }

  /* Submenu inside mobile */
  nav ul li ul {
    position: static;
    border: none;
    box-shadow: none;
    background: #fafafa;
    margin-bottom: 20px;
  }

  nav ul li ul li a {
    padding: 12px 24px;
    font-size: 0.9em;
  }

  nav ul li ul li a:hover {
    background: #E97C95;
  }
  .submenu > a::after{
    right: 48%;
  }
}