/* Custom overrides for Frizzico Studio mobile expanding menu */

/* Base hidden state */
.frz-mobile-menu {
  position: fixed;
  top: 50px; /* offset a bit below top (will be overridden in JS for animation origin) */
  left: 50px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px -10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: width .55s cubic-bezier(.76,0,.24,1), height .55s cubic-bezier(.76,0,.24,1), opacity .35s ease, top .55s cubic-bezier(.76,0,.24,1), left .55s cubic-bezier(.76,0,.24,1);
}

/* Opened state sized to 95% (leaving 2.5% margin each side) */
.frz-mobile-menu.is-open {
  top: 2.5%;
  left: 2.5%;
  width: 95%;
  height: 95%;
  opacity: 1;
  pointer-events: auto;
}

/* Only show on sub 1200px (mobile / tablet) */
@media (min-width:1200px){
  .frz-mobile-menu { display:none; }
}

.frz-mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 40px;
  background: none;
  border: none;
  color: #111;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform .3s ease;
}
.frz-mobile-menu-close:hover { transform: rotate(90deg); }

.frz-mobile-nav { position: relative; z-index:2; display:flex; align-items:center; justify-content:center; height:100%; padding:100px 30px 140px; }
.frz-mobile-nav ul { list-style:none; margin:0; padding:0; text-align:center; width:100%; }
.frz-mobile-nav ul li { margin: 0 0 18px; }
.frz-mobile-nav ul li a { font-size: clamp(30px,7vw,56px); font-weight:600; text-transform:lowercase; color:#111; text-decoration:none; display:inline-block; position:relative; }
.frz-mobile-nav ul li a:after { content:""; position:absolute; left:0; bottom:4px; height:2px; width:0; background:#111; transition:width .4s cubic-bezier(.76,0,.24,1); }
.frz-mobile-nav ul li a:hover:after { width:100%; }

.frz-mobile-menu-footer { position:absolute; left:0; right:0; bottom:0; padding:26px 28px 32px; display:flex; flex-direction:column; gap:10px; font-size:14px; letter-spacing:.5px; z-index:2; }
.frz-mobile-contact a { color:#111; text-decoration:none; }
.frz-mobile-contact a:hover { text-decoration:underline; }
.frz-mobile-social { font-weight:600; }
.frz-mobile-social a { color:#111; text-decoration:none; }
.frz-mobile-social a:hover { text-decoration:underline; }

/* Fade-in of inner elements */
.frz-mobile-menu.is-open .frz-mobile-nav ul li { animation: frzFadeSlide .55s ease forwards; opacity:0; transform:translateY(18px); }
.frz-mobile-menu.is-open .frz-mobile-nav ul li:nth-child(1){ animation-delay:.08s; }
.frz-mobile-menu.is-open .frz-mobile-nav ul li:nth-child(2){ animation-delay:.14s; }
.frz-mobile-menu.is-open .frz-mobile-nav ul li:nth-child(3){ animation-delay:.20s; }
.frz-mobile-menu.is-open .frz-mobile-nav ul li:nth-child(4){ animation-delay:.26s; }
.frz-mobile-menu.is-open .frz-mobile-nav ul li:nth-child(5){ animation-delay:.32s; }

@keyframes frzFadeSlide { to { opacity:1; transform:translateY(0); } }

/* Prevent body scroll when open */
body.frz-menu-open { overflow:hidden; }


/* Customs for Frizzico Vinoforum page */

img.frizzico-vinoforum-logo-hero-frizzico {
  width: 70%;
  height: auto;
}

.studio-hero-info-custom{
  padding-bottom: 10px;
}

.X-custom {
  font-size: 50px;
  font-weight: bold;
  color: black;
  margin-bottom: 80px;
}

.service-accordion-title{
  font-size: 40px!important;
  font-weight: 800!important;
  text-transform: none;
  color: #111;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.agntix-light .studio-service-item-wrap{
  border:none;
}

.tp-copyright-big-text-custom {
  font-weight: 800;
  font-size: 230px;
  line-height: 1;
  letter-spacing: -16px;
  color: #f0f0f0;
}

.service-detail-features strong{
  font-weight: 600;
  font-size: 16px;
}



@media (max-width: 768px) {
  .X-custom {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .hide-mobile {
    display: none;
  }

  .service-accordion-title{
    font-size: 30px!important;
    font-weight: 600!important;
  }

  .tp-copyright-big-text-custom {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0px;
  color: #f0f0f0;
}
  
}

/* End Customs for Frizzico Vinoforum page */
/* Blog page custom */
