@charset "UTF-8";
body {
  background: #000000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.rounded-30 {
  border-radius: 30px;
}

h1 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 70px;
  color: #ffffff;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #A9A9A9;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 35px;
  color: #A9A9A9;
  letter-spacing: 2px;
  margin-bottom: 5rem; /* spazio sotto il titolo */
}
@media (max-width: 992px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 24px;
  }
}

p,
.p,
.p li {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 992px) {
  p,
  .p,
  .p li {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  p,
  .p,
  .p li {
    font-size: 16px;
  }
}

.date {
  font-weight: 100;
  font-size: 18px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .date {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .date {
    font-size: 14px;
  }
}

.titolino {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .titolino {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .titolino {
    font-size: 16px;
  }
}

.container p {
  line-height: 1.5;
  margin-bottom: 1rem;
}

.link-white {
  color: white;
  text-decoration: underline; /* opzionale se non vuoi il sottolineato */
}

.link-white:hover {
  color: #ddd; /* così da mobile/desktop cambia un po’ al passaggio */
}

.btn-custom {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #ffffff;
  border-radius: 30px;
  padding: 10px 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .btn-custom {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .btn-custom {
    font-size: 20px;
  }
}
.btn-custom:hover {
  transform: scale(1.05);
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

/* HEADER */
.custom-navbar {
  background: rgba(0, 0, 0, 0.7); /* nero 70% opacità */
  border-bottom: 2px solid #ffffff;
  height: 90px;
}

.custom-navbar .nav-link {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 200;
  transition: transform 0.2s ease, color 0.2s ease;
}

.custom-navbar .nav-link:hover {
  transform: scale(1.05);
  color: #ffffff;
}

.custom-navbar .nav-link.active {
  color: #ffffff;
  font-weight: 200;
}

.custom-navbar .nav-link.active:hover {
  transform: scale(1.05);
  color: #ffffff;
}

.custom-navbar .navbar-toggler {
  border: none;
}

.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Sfondo nero per il menu a tendina mobile */
@media (max-width: 991px) {
  .custom-navbar .navbar-collapse {
    background: #000; /* nero 100% */
    width: 100%; /* occupa tutta la larghezza */
    left: 0;
    top: 90px; /* altezza della navbar */
    position: absolute; /* così si "stacca" e copre tutto sotto */
    padding: 1rem;
    z-index: 999; /* sta sopra ai contenuti */
  }
  .custom-navbar .nav-link {
    display: block;
    padding: 0.75rem;
    text-align: center; /* centri i link */
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 200;
  }
}
footer {
  min-height: 100px;
  border-bottom: 2px solid #fff;
}
footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  footer .row {
    flex-direction: column;
    text-align: center;
  }
}
footer .col-auto {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  footer .col-auto {
    margin-bottom: 0.75rem;
  }
  footer .col-auto.d-flex {
    justify-content: center !important;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  footer .btn-footer {
    margin-bottom: 1rem;
  }
}

.btn-footer {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  background-color: #00BDFF;
  border-radius: 30px;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-footer:hover {
  transform: scale(1.05);
  background-color: #00BDFF;
  color: #ffffff;
  border-color: #000000;
}

.footer-link {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer-link:hover {
  transform: scale(1.05);
  color: #ffffff;
}
.footer-link:focus {
  outline: none;
}

@media (max-width: 767px) {
  .footer-link {
    font-size: 16px;
  }
}
.section-gap-25 {
  margin-top: 25vh;
  margin-bottom: 25vh;
}
@media (max-width: 992px) {
  .section-gap-25 {
    margin-top: 15vh;
    margin-bottom: 15vh;
  }
}
@media (max-width: 576px) {
  .section-gap-25 {
    margin-top: 8vh;
    margin-bottom: 8vh;
  }
}

.section-gap-10 {
  margin-top: 10vh;
  margin-bottom: 10vh;
}
@media (max-width: 992px) {
  .section-gap-10 {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
}
@media (max-width: 576px) {
  .section-gap-10 {
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
}

.section-gap-5 {
  margin-top: 5vh;
  margin-bottom: 5vh;
}
@media (max-width: 992px) {
  .section-gap-5 {
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
}
@media (max-width: 576px) {
  .section-gap-5 {
    margin-top: 2vh;
    margin-bottom: 2vh;
  }
}

.bottom-gap-25 {
  margin-bottom: 25vh;
}
@media (max-width: 992px) {
  .bottom-gap-25 {
    margin-bottom: 20vh;
  }
}
@media (max-width: 576px) {
  .bottom-gap-25 {
    margin-bottom: 10vh;
  }
}

/* Contenitore link */
.box-link {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  height: 25vh; /* altezza base desktop */
}

/* Immagini dentro il link */
.box-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* riempie il contenitore senza deformarsi */
  display: block;
  transition: transform 0.3s ease;
}

/* Hover per bordo */
.box-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 30px;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.box-link:hover::after {
  border-color: white;
}

/* SOLO per la foto "Cocnierge" */
.concierge-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* riempie il contenitore mantenendo proporzioni */
  -o-object-position: 1% 70%;
     object-position: 1% 70%; /* personalizza la parte visibile */
  border-radius: 30px; /* uniforma agli altri box-link */
  transition: transform 0.3s ease;
}

/* SOLO per la foto "gustoride" */
.gusto-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* l’immagine riempie mantenendo proporzioni */
  -o-object-position: 50% 100%;
     object-position: 50% 100%; /* default desktop */
  border-radius: 30px; /* per uniformità */
  transition: transform 0.3s ease;
}

/* Desktop - opzionale se vuoi lo stesso di default */
@media (min-width: 992px) {
  .gusto-img {
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
  }
}
/* Tablet */
@media (max-width: 991px) and (min-width: 577px) {
  .gusto-img {
    -o-object-position: 80% 80%;
       object-position: 80% 80%;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .gusto-img {
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
  }
}
/* SOLO per la foto "Mamma" */
.mamma-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% 10%;
     object-position: 10% 10%; /* ancora più preciso */
  border-radius: 30px;
  transition: transform 0.3s ease;
}

/* Responsive: altezza immagini più piccola su tablet e mobile */
@media (max-width: 992px) {
  .box-link {
    height: 20vh;
  }
}
@media (max-width: 576px) {
  .box-link {
    height: 30vh;
  }
}
/* CAROSELLO */
/* Contenitore del carosello */
.carousel-inner {
  overflow: hidden;
  border-radius: 30px;
  height: 60vh;
}

/* Mobile: altezza maggiore e proporzionata */
@media (max-width: 992px) {
  .carousel-inner {
    height: 50vh;
  }
}
@media (max-width: 576px) {
  .carousel-inner {
    height: 40vh;
  }
}
/* Immagini */
.carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  display: block;
  transition: transform 0.3s ease;
}

/* portfolio.css o style.css */
.portfolio-img {
  width: 100%; /* immagine riempie la colonna */
  height: 45vh; /* altezza 40vh */
  -o-object-fit: cover;
     object-fit: cover; /* mantiene proporzioni e riempie il contenitore */
  border-radius: 30px; /* angoli arrotondati */
  display: block; /* evita piccoli spazi sotto l'immagine */
}

.cv-box {
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .cv-box {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .cv-box {
    margin-left: 0.35rem;
    margin-right: 0.35rem;
  }
}
.experience-box {
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.experience-box .titolino {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.experience-box .date {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.experience-box .p {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 18px;
  color: #ffffff;
}
.experience-box .p p, .experience-box .p ul {
  margin: 0;
  padding: 0;
}
.experience-box .p ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}
.experience-box .p ul li {
  margin-bottom: 6px;
}
.experience-box .p ul.highlights-list {
  margin-top: 1rem;
}

/* FORM CUSTOM */
.contact-form .form-label {
  font-size: 20px;
  color: #ffffff; /* scritte bianche sopra i campi */
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.custom-input {
  background-color: #000000; /* sfondo nero */
  border: 2px solid #ffffff; /* bordo bianco 2px */
  border-radius: 10px; /* angoli arrotondati */
  color: #ffffff; /* testo bianco */
  padding: 0.75rem 1rem;
}

@media (max-width: 576px) {
  .custom-input {
    margin-bottom: 1rem; /* spazio extra su mobile tra i campi */
  }
}
.custom-input::-moz-placeholder {
  color: #cccccc; /* solo se vuoi eventuale placeholder grigio */
}
.custom-input::placeholder {
  color: #cccccc; /* solo se vuoi eventuale placeholder grigio */
}

.custom-input:focus {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.mobile-hint {
  display: block;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin-top: 0.3rem;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .mobile-hint {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */