/* ------------------------------------------------------------------ */

/* questi sono i font che utilizzerò per le scritte */ 


@font-face {
  font-family:'Alice' ;
  src: url(font/Alice.ttf) format(truetype);
}

@font-face {
  font-family:'amster' ;
  src: url(font/amster.ttf) format(truetype);
}

@font-face {
  font-family:'Bodonibold' ;
  src: url(font/BodoniFLF-Bold.ttf) format(truetype);
}

@font-face {
  font-family:'bodoniroman' ;
  src: url(font/BodoniFLF-Roman.ttf) format(truetype);
}

@font-face {
  font-family:'PL' ;
  src: url(font/Pl.ttf) format(truetype);
}

@font-face {
  font-family: 'Didot';
  src: url('font/Didot.otf') format('opentype');
}


@font-face {
  font-family:'DidotDisplayLP' ;
  src: url(font/DidotDisplay.ttf) format(truetype);
}

@font-face {
  font-family:'Poppinsbold' ;
  src: url(font/Poppins-Bold.ttf) format(truetype);
}
@font-face {
  font-family:'PoppinsSemiBold' ;
  src: url(font/Poppins-SemiBold.ttf) format(truetype);
}
@font-face{
  font-family:'Zing';
  src:url(font/Zing.ttf) format(truetype);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.hero {
	min-height: 100svh;
	background: url('imagi/n.jpg') center / cover no-repeat;

  	display: grid;
  	grid-template-columns: repeat(5, 1fr);
  	grid-template-rows:repeat(5, 1fr);
  align-content: end; /* tutto in basso */

}

.Principale {
  min-height: 40svh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
}

.T1 {
  font-family: Didot;
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 12px;
  position: relative;
}


.Titolop {
	grid-column: 2/ span 4;
	grid-row: 4/ span 5;
	font-family: Didot;
	font-weight: 100;
	font-size: 120px;
	letter-spacing: 7px;
 

}

.Red1 {
	color: red;
}

.sotto1 {
	grid-column: 2/ span 4;
	grid-row: 5/span 5;
	font-family: Didot;
	font-size: 30px;
	margin-top: -30px;
	margin-left: 10px;
}

.Red2 {
	color: red;
	font-size: 35px;
	font-weight: 400;
}

.Secondo {
   position: relative;
  min-height: 100vh;
  padding: 120px 2% 120px 12%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.Secondo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: #e5e5e5;
}

.colonna {
  display: flex;
  flex-direction: column;
  gap: 80px;

}

.titolo-colonna {
  font-family: Didot;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.re1{
  color: #bd1212;
  font-size: 100px;
  font-family: DidotDisplayLP;
}

.pacchetto h3 {
  font-family: Didot;
  font-size: 36px;
  margin-bottom: 5px;
  color:#bd1212;
}

.sub {
  font-family: Poppinsbold;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;

}


ul {
  list-style: none;
  margin-bottom: 25px;
}

ul li {
  font-family: Didot;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
  font-weight: 200;
}

.prezzo {
  font-family: Zing;
  font-size: 24px;
  letter-spacing: 3px;
}

.footer-cta {
  width: 100%;
  background: #bd1212; /* stesso rosso che stai usando */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 40px 20px;
  margin-top: 120px;
}

.footer-link {
  font-family: Zing;
  font-weight: 200;
  font-size: 22px;
  letter-spacing: 4px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
}



  @media (max-width: 600px) {

  /* HERO */
  .hero {
    min-height: 70svh;
    padding: 40px 20px;
  }

  .Titolop {
    font-size: 52px;
    letter-spacing: 4px;
  }

  .sotto1 {
    display: none;
  }

  /* SEZIONE WEDDINGS */
  .Principale {
    min-height: 25svh;
    padding: 40px 0;
  }

  .T1 {
    font-size: 48px;
    letter-spacing: 6px;
  }

  /* SEZIONE PREZZI */
  .Secondo {
    grid-template-columns: 1fr;  /* 1 colonna */
    padding: 60px 25px;
    gap: 80px;
  }

  .Secondo::before {
    display: none; /* rimuove linea centrale */
  }

  .titolo-colonna {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .re1 {
    font-size: 60px;
  }

  .pacchetto h3 {
    font-size: 26px;
  }

  ul li {
    font-size: 17px;
  }

  .prezzo {
    font-size: 20px;
  }

  /* FOOTER */
  .footer-cta {
    flex-direction: column;
    gap: 25px;
    padding: 35px 20px;
  }

  .footer-link {
    font-size: 18px;
    letter-spacing: 3px;
  }

}