    @import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Fredoka&display=swap');

/* BASE STYLES */
body {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    background-color: #f4f4f4;
    color: #56aeff;

	/* aggiungere uno sfondo solo per tutta la landing che rimane fisso e non scorre */
	background-image: url('images/background-fixed.jpg');
    background-attachment: fixed;         /* Sfondo fisso */
    background-size: cover;               /* Copre tutta la finestra */
    background-position: center center;   /* Centra l'immagine */
    background-repeat: no-repeat;         /* Non si ripete */


}

h1, h2, h3 {
    font-family: 'Bangers', sans-serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
	/* color: #FFD230; */
}

/* SECTIONS WITH BACKGROUND */
section, header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    /* background-image: url('images/hero-bg.jpg'); */
}

.hero-logo {
	max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: contain;
}


.hero .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

.hero-content {
    /* color: #FFD230; */
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.hero-content h1 {
	color: #FFD230;
    font-size: 5em;
    margin-bottom: 10px;
}

.hero-content p {
	color: #fff;
    font-size: 1.6em;
    margin-bottom: 20px;
}

/* CTA BUTTON */
.cta-button {
    background-color: #FFD230;
    color: #003366;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;

}

.cta-button:hover {
    background-color: #ffc400;
    transform: scale(1.05);
}

/* INTRO SECTION */
.intro {
    height: 60vh;
    /* background-image: url('images/intro-bg.jpg'); */
}

.intro .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

.intro-content h2{
    color: #FFD230;
    text-align: center;
	font-size: 2.5em;
    padding: 20px;
    z-index: 1;
}

.intro-content p{
    color: #fff;
    text-align: center;
	font-size: 1.3em;
    padding: 20px;
    z-index: 1;
}

/* FEATURES SECTION */
.features {
    /* background-image: url('images/features-bg.jpg'); */
    padding: 60px 20px;
}

.features-content h2{
    color: #FFD230;
    text-align: center;
	font-size: 2.5em;
    padding: 20px;
    z-index: 1;
}

.features .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    padding: 60px 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.feature-box h3{
    color: #003366;
    text-align: left;
	text-shadow: none;
	
}


.feature-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: #003366;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.feature-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    /* background-image: url('images/howitworks-bg.jpg'); */
    padding: 60px 20px;
}
.how-it-works-content h2{
    color: #FFD230;
    text-align: center;
	font-size: 2.5em;
    padding: 20px;
    z-index: 1;
}

.how-it-works .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    padding: 60px 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.step {
    background-color: #003366;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.step span {
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD230;
}


/* PRICES SECTION */
.pricing {
    /* background-image: url('images/pricing-bg.jpg'); */
    padding: 60px 20px;
}

.pricing .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    padding: 60px 20px;
    text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-content h2 {
    color: #FFD230;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.price-box {
    background-color: #fff;
    color: #003366;
    border-radius: 10px;
    padding: 20px;
    width: 220px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: scale(1.05);
}

.price-box h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
	text-shadow: none;
}

.price-box p {
    font-size: 1.2em;
    font-weight: bold;
}

.note {
    color: #fff;
    font-size: 0.9em;
    margin-top: 20px;
}

/* CONTACT SECTION */
.contact {
    /* background-image: url('images/contact-bg.jpg'); */
    padding: 60px 20px;
}

.contact .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-content h2{
    color: #FFD230;
    text-align: center;
	font-size: 2.5em;
    padding: 5px;
    z-index: 1;
}

.contact-content p{
    color: #fff;
    text-align: center;
	font-size: 1.2em;
    padding: 5px;
    z-index: 1;
}

/* HOURS SECTION */
.opening-hours {
    /* background-image: url('images/opening-bg.jpg'); */
    padding: 60px 20px;
}

.opening-hours .overlay {
    background-color: rgba(86, 174, 255, 0.2);
    backdrop-filter: blur(1px);
    padding: 60px 20px;
    text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.opening-content h2 {
    color: #FFD230;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    max-width: 400px;
    text-align: left;
    color: #fff;
    font-size: 1.1em;
}

.hours-list li {
    margin-bottom: 10px;
}

.note {
    color: #fff;
    font-size: 0.9em;
    margin-top: 20px;
}


/* FOOTER */
footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* SOCIAL ICONS */
/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  margin-top: 30px;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
}

/* Instagram */
.fa-instagram {
  background: #C13584;
  color: white;
}

/* Youtube */
.fa-youtube {
  background: #bb0000;
  color: white;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .feature-grid,
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1.5em;
    }

    .intro-content h2 {
        font-size: 2.5em;
    }

    .intro-content p {
        font-size: 1.5em;
    }
	
    .features-content h2 {
        font-size: 2.5em;
    }

    .features-content p {
        font-size: 1.5em;
    }	

    .how-it-works-content h2 {
        font-size: 2.5em;
    }

    .how-it-works-content p {
        font-size: 1.5em;
    }
	
    .contact-content h2 {
        font-size: 2.5em;
    }

    .contact-content p {
        font-size: 1.5em;
    }
	
    .opening-content h2 {
        font-size: 2.5em;
    }

    .opening-content p {
        font-size: 1.5em;
    }

    .pricing-content h2 {
        font-size: 2.5em;
    }
}
