/* Hero Section */
.hero_section {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  flex-direction: column; /* facoltativo, utile se header va sopra */
}

.video-wrapper {
  position: absolute;
  width: 100%;
  height: 120%;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.video-wrapper iframe {
  position: relative;
  width: 120%;
  height: 120vh;
  object-fit: cover;
  pointer-events: none;
  margin-left: -10vw;
}

.hero_section_header {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 900;
}

.main_logo_container {
  margin-bottom: 40px;
}

.logo_hero {
  width: 180px;
  height: auto;
}

.main_text {
  font-size: 4rem;
  font-weight: 100;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
}

.main_text .marzano {
  font-size: 1.6rem;
  color: #cccccc;
  font-weight: 300;
  letter-spacing: 12px;
  margin-top: 20px;
  font-style: italic;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero_section_header h2 {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 30px;
  text-align: center;
}

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Source+Sans+Pro:wght@300;400;600&display=swap");

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Animazioni */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(101, 67, 33, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(101, 67, 33, 0.2);
  }
}

/* Contenitore principale */
.la_tenuta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #fefdf9;
  position: relative;
}

/* Pattern di sfondo sottile */
.la_tenuta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(139, 118, 76, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 83, 53, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

/* Colonna immagine */
.image_column {
  position: relative;
  z-index: 2;
  animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.image_column::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(139, 118, 76, 0.2);
  border-radius: 6px;
  z-index: -1;
  transition: all 0.4s ease;
}

.image_column img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  filter: sepia(10%) contrast(1.1) brightness(1.05);
  transition: all 0.8s ease;
  animation: gentleGlow 4s infinite ease-in-out;
}

.image_column:hover img {
  filter: sepia(5%) contrast(1.05) brightness(1.1);
  transform: translateY(-8px);
}

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Source+Sans+Pro:wght@300;400;600&display=swap");

/* Animazioni */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(101, 67, 33, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(101, 67, 33, 0.2);
  }
}

/* Contenitore principale */
.la_tenuta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #fefdf9;
  position: relative;
}

/* Pattern di sfondo sottile */
.la_tenuta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(139, 118, 76, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 83, 53, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

/* Colonna immagine */
.image_column {
  position: relative;
  z-index: 2;
  animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image_column img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  filter: sepia(10%) contrast(1.1) brightness(1.05);
  transition: all 0.8s ease;
  animation: gentleGlow 4s infinite ease-in-out;
}

.image_column:hover img {
  filter: sepia(5%) contrast(1.05) brightness(1.1);
  transform: translateY(-8px);
}

/* Contenuto testuale */
.tenuta_description {
  position: relative;
  z-index: 2;
  animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s
    both;
}

.tenuta_description_inner {
  width: 100%;
}

/* Titolo principale */
.tenuta_title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: #2d3a2f;
  margin-bottom: 35px;
  line-height: 1.1;
  position: relative;
  text-transform: uppercase;
}

/* Paragrafo */
.tenuta_description p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4a5c4f;
  text-align: justify;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Stile per il primo carattere del paragrafo */
.tenuta_description p::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 4em;
  font-weight: 600;
  color: #8b764c;
  float: left;
  line-height: 0.8;
  margin: 8px 8px 0 0;
}

/* Effetto di lettura progressiva */
.tenuta_description p::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #8b764c 0%, transparent 100%);
  opacity: 0;
  transition: opacity 1s ease 1.5s;
}

.tenuta_description:hover p::before {
  opacity: 1;
}

/* Design responsive */
@media (max-width: 1200px) {
  .la_tenuta {
    gap: 60px;
    padding: 80px 30px;
  }

  .tenuta_title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .video-wrapper {
    width: 200vw;
    height: 100vh;
    left: -50vw;
  }

  .video-wrapper iframe {
    height: 100vh;
    object-fit: cover;
  }

  .hero_section {
    flex-direction: column;
    justify-content: center;
  }
  .la_tenuta {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 25px;
    text-align: center;
  }

  .image_column {
    order: 1;
  }

  .tenuta_description {
    order: 2;
  }

  .image_column img {
    height: 350px;
  }

  .tenuta_title {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }

  .tenuta_description p {
    text-align: left;
    font-size: 0.95rem;
  }

  .tenuta_description p::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .la_tenuta {
    padding: 40px 20px;
    gap: 40px;
  }

  .tenuta_title {
    font-size: 2rem;
  }

  .image_column img {
    height: 280px;
  }
}
/* La Tenuta Section */
/* .la_tenuta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.image_column {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.image_column img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%) contrast(1.1);
}

.image_column img:hover {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.2);
}

.tenuta_description {
  display: flex;
  align-items: center;
  padding: 120px 80px;
  background: #ffffff;
}

.tenuta_description_inner {
  max-width: 480px;
}

.tenuta_title {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 50px;
  font-weight: 200;
  letter-spacing: 2px;
  line-height: 1.1;
}

.tenuta_description p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.9;
  margin-bottom: 60px;
  font-weight: 300;
} */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Lato:wght@300;400;500&display=swap");

@keyframes slideFromRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Sezione Chef */
.chef {
  background: linear-gradient(to bottom, #f7f5f0 0%, #ede8dd 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.chef::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(139, 118, 76, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(67, 83, 53, 0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* Contenitore principale */
.chef_text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Titolo Chef */
.chef_title {
  font-family: "Crimson Text", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #2a3529;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 0.02em;
  position: relative;
  text-transform: uppercase;
}

.chef_title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #8b764c;
  opacity: 0.6;
}

/* Container immagine e testo */
.img_testo_chef {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}

/* Testo dello chef */
.img_testo_chef .chef_text {
  padding: 0;
  margin: 0;
  max-width: none;
}

.img_testo_chef .chef_text p {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3d4a40;
  text-align: justify;
  margin-bottom: 40px;
  position: relative;
}

/* Stile per il primo carattere del paragrafo */
.img_testo_chef .chef_text p::first-letter {
  font-family: "Crimson Text", serif;
  font-size: 4em;
  font-weight: 600;
  color: #8b764c;
  float: left;
  line-height: 0.8;
  margin: 8px 8px 0 0;
}

/* CTA Section */
.cta {
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta a {
  text-decoration: none;
}

.home_link {
  background: linear-gradient(135deg, #8b764c 0%, #a08859 100%);
  color: white;
  border: 2px solid #8b764c;
  padding: 15px 40px;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(139, 118, 76, 0.2);
}

.home_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.home_link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 118, 76, 0.3);
  background: linear-gradient(135deg, #9d8355 0%, #b59666 100%);
}

.home_link:hover::before {
  left: 100%;
}

.home_link:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}

/* Immagine Chef */
.img_chef {
  position: relative;
  animation: slideFromRight 1.2s ease-out 0.6s both;
}

.img_chef img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(15%) contrast(1.05);
  transition: all 0.6s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.img_chef:hover img {
  filter: grayscale(5%) contrast(1.1);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Elemento decorativo per l'immagine */
.img_chef::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(139, 118, 76, 0.2);
  border-radius: 6px;
  z-index: -1;
  transition: all 0.4s ease;
}

.img_chef:hover::before {
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border-color: rgba(139, 118, 76, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .chef {
    padding: 100px 0;
  }

  .chef_text {
    padding: 0 30px;
  }

  .chef_title {
    font-size: 3.5rem;
    margin-bottom: 60px;
  }

  .img_testo_chef {
    gap: 50px;
  }

  .img_chef img {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .chef {
    padding: 80px 0;
  }

  .chef_text {
    padding: 0 25px;
  }

  .chef_title {
    font-size: 3rem;
    margin-bottom: 50px;
  }

  .img_testo_chef {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .img_chef {
    order: -1;
  }

  .img_chef img {
    height: 350px;
  }

  .img_testo_chef .chef_text p {
    font-size: 1rem;
    text-align: left;
  }

  .img_testo_chef .chef_text p::first-letter {
    font-size: 3.5em;
  }

  .cta {
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .chef {
    padding: 60px 0;
  }

  .chef_text {
    padding: 0 20px;
  }

  .chef_title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .img_chef img {
    height: 280px;
  }

  .img_testo_chef .chef_text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .img_testo_chef .chef_text p::first-letter {
    font-size: 3em;
    margin: 5px 6px 0 0;
  }

  .home_link {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}
/* Chef Section */
/* .chef {
  padding: 150px 80px;
  background: #fafafa;
}

.chef_title {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 80px;
  text-align: center;
  font-weight: 200;
  letter-spacing: 2px;
}

.img_testo_chef {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.chef_text p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.9;
  margin-bottom: 60px;
  font-weight: 300;
}

.img_chef img {
  width: 100%;
  border-radius: 0;
  transition: all 0.6s ease;
  filter: grayscale(30%) contrast(1.1);
}

.img_chef img:hover {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.02);
} */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Lato:wght@300;400;500&display=swap");

@keyframes slideFromLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rotazione {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Sezione Cucina */
.cucina {
  background: #ffffff;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  margin: 0 auto;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Testo Cucina */
.testo_cucina {
  padding: 0 40px;
  animation: slideFromLeft 1.2s ease-out;
}

.testo_cucina h2 {
  font-family: "Crimson Text", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #2a3529;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testo_cucina h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #8b764c;
  margin-top: 20px;
  opacity: 0.6;
}

.testo_cucina p {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3d4a40;
  text-align: justify;
  margin-bottom: 40px;
}

.testo_cucina p::first-letter {
  font-family: "Crimson Text", serif;
  font-size: 4em;
  font-weight: 600;
  color: #8b764c;
  float: left;
  line-height: 0.8;
  margin: 8px 8px 0 0;
}

/* CTA Section */
.testo_cucina .cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testo_cucina .cta a {
  text-decoration: none;
}

.home_link {
  background: linear-gradient(135deg, #8b764c 0%, #a08859 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(139, 118, 76, 0.2);
}

.home_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.home_link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 118, 76, 0.3);
  background: linear-gradient(135deg, #9d8355 0%, #b59666 100%);
}

.home_link:hover::before {
  left: 100%;
}

.home_link:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}

/* Immagine Girevole */
.img_girevole {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideFromRight 1.2s ease-out 0.3s both;
}

.rotazione {
  width: 30vw;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  animation: rotazione 25s linear infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.img_girevole:hover .rotazione {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Sezione B&B */
.bedandbreakfast {
  background: linear-gradient(to bottom, #f7f5f0 0%, #ede8dd 100%);
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  width: 90%;
  margin: 0 auto;
  gap: 70px;
  align-items: start;
  position: relative;
}

.bedandbreakfast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at top right,
      rgba(139, 118, 76, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(67, 83, 53, 0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* Immagine B&B */
.img_bandb {
  position: relative;
  z-index: 2;
  animation: slideFromLeft 1.2s ease-out;
}

.img_bandb img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(15%) contrast(1.05);
  transition: all 0.6s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.img_bandb:hover img {
  filter: grayscale(5%) contrast(1.1);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.img_bandb::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(139, 118, 76, 0.2);
  border-radius: 6px;
  z-index: -1;
  transition: all 0.4s ease;
}

.img_bandb:hover::before {
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border-color: rgba(139, 118, 76, 0.3);
}

/* Testo Camere */
.testo_camere {
  padding: 0 40px;
  position: relative;
  z-index: 2;
  animation: slideFromRight 1.2s ease-out 0.3s both;
}

.testo_camere h2 {
  font-family: "Crimson Text", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #2a3529;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
}

.testo_camere h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #8b764c;
  margin-top: 20px;
  opacity: 0.6;
}

.testo_camere p {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3d4a40;
  text-align: justify;
  margin-bottom: 50px;
}

.testo_camere p::first-letter {
  font-family: "Crimson Text", serif;
  font-size: 4em;
  font-weight: 600;
  color: #8b764c;
  float: left;
  line-height: 0.8;
  margin: 8px 8px 0 0;
}

.testo_camere a {
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cucina,
  .bedandbreakfast {
    max-width: 100%;
    padding: 100px 30px;
    gap: 60px;
  }

  .testo_cucina,
  .testo_camere {
    padding: 0 20px;
  }

  .testo_cucina h2,
  .testo_camere h2 {
    font-size: 3rem;
  }

  .rotazione {
    width: 350px;
    height: 350px;
  }

  .img_bandb img {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .cucina,
  .bedandbreakfast {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 25px;
  }

  .img_girevole {
    order: -1;
  }

  .testo_cucina,
  .testo_camere {
    padding: 0 10px;
    text-align: center;
  }

  .testo_cucina h2,
  .testo_camere h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .testo_cucina h2::after,
  .testo_camere h2::after {
    margin: 20px auto 0;
  }

  .testo_cucina p,
  .testo_camere p {
    text-align: left;
    font-size: 1rem;
  }

  .testo_cucina p::first-letter,
  .testo_camere p::first-letter {
    font-size: 3.5em;
  }

  .rotazione {
    width: 300px;
    height: 300px;
  }

  .img_bandb img {
    height: 350px;
  }

  .testo_cucina .cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cucina,
  .bedandbreakfast {
    padding: 60px 20px;
    gap: 40px;
  }

  .testo_cucina h2,
  .testo_camere h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .testo_cucina p,
  .testo_camere p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .testo_cucina p::first-letter,
  .testo_camere p::first-letter {
    font-size: 3em;
    margin: 5px 6px 0 0;
  }

  .rotazione {
    width: 250px;
    height: 250px;
  }

  .img_bandb img {
    height: 280px;
  }

  .home_link {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* Cucina Section */
/* .cucina {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 150px 80px;
  background: #ffffff;
  align-items: center;
  gap: 100px;
}

.testo_cucina h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 1px;
}

.testo_cucina p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.9;
  margin-bottom: 60px;
  font-weight: 300;
}

.img_girevole {
  text-align: center;
}

.rotazione {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  animation: rotate 30s linear infinite;
  transition: all 0.4s ease;
  filter: contrast(1.1) saturate(1.1);
}

.rotazione:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
} */

/* Bed & Breakfast Section */
.bedandbreakfast {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f5f5f5;
}

.img_bandb img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: all 0.6s ease;
}

.img_bandb img:hover {
  filter: grayscale(0%) contrast(1.2);
}

.testo_camere {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testo_camere h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 200;
  letter-spacing: 1px;
}

.testo_camere p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.9;
  margin-bottom: 60px;
  font-weight: 300;
}

.azienda_container {
  width: 100%;
  margin: 0 auto;
  padding: 60px 5%;
  background-color: rgba(65, 85, 66, 0.4);
  box-sizing: border-box;
}

.azienda_container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e1d;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 1px;
}

.azienda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.square {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.square:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.square:hover img {
  transform: scale(1.05);
}

.square_content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  top: 10%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.15);
  color: white;
  padding: 25px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(8px);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.square_content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.square_content p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (width <= 768px) {
  .azienda_container {
    width: 95%;
    padding: 40px 0;
  }

  .azienda_container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .azienda {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .square {
    height: 300px;
  }

  .square_content {
    position: absolute;
    background: linear-gradient(
      135deg,
      rgba(44, 62, 29, 0.9),
      rgba(76, 102, 45, 0.9)
    );
    margin: 0;
    position: relative;
    z-index: 2;
  }
}

@media (width <= 480px) {
  .azienda_container h2 {
    font-size: 1.7rem;
  }

  .square_content {
    padding: 20px;
  }

  .square_content h3 {
    font-size: 1.2rem;
  }

  .square_content p {
    font-size: 0.9rem;
  }
}

/* Eventi Section */
.eventi {
  padding: 200px 80px;
  text-align: center;
  background: linear-gradient(135deg, #fff2df 0%, #eeebdb 100%);
}

.eventi h3 {
  font-size: 4rem;
  color: #4f4f4f;
  font-weight: 100;
  letter-spacing: 8px;
  text-transform: uppercase;
}

/* Buttons */
.home_link,
button {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  padding: 12px 40px;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.home_link:hover,
button:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.cta {
  margin-top: 50px;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

#lightbox-img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  color: white;
  font-size: 30px;
  font-weight: 200;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.close:hover {
  opacity: 0.6;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 20px;
  margin-top: -30px;
  color: white;
  font-weight: 200;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  user-select: none;
}

.next {
  right: 40px;
}

.prev {
  left: 40px;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .main_text {
    font-size: 3rem;
    letter-spacing: 4px;
  }

  .main_text.marzano {
    font-size: 1.5rem;
    letter-spacing: 8px;
  }

  .la_tenuta,
  .img_testo_chef,
  .cucina,
  .bedandbreakfast {
    grid-template-columns: 1fr;
  }

  .azienda {
    grid-template-columns: 1fr;
  }

  .hero_section_header {
    padding: 60px 40px;
  }

  .tenuta_description,
  .chef,
  .cucina,
  .testo_camere,
  .azienda_container {
    padding: 40px;
  }

  .img_testo_chef {
    gap: 60px;
  }

  .cucina {
    gap: 60px;
  }

  .square_content {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
  }

  .eventi {
    padding: 120px 40px;
  }

  .eventi h3 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
}

/* Animations */
.gsap-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gsap-visible {
  opacity: 1;
  transform: translateY(0);
}
