body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
	overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.navbar {
   display: flex;
    position: fixed;
    top: 0;
    width: 96%;
    justify-content: space-between;
    align-items: center;
    padding-left: 2%;
    padding-right: 2%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    z-index: 1000; 
}

.navbar-brand img {
    height: 65px;
}

nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prenota-btn {
    background-color: #EE4243;
    color: white;
    border-radius: 5px;
}

.prenota-btn:hover {
    background-color: #FF6666;
}

.left, .right {
    width: 50%;
    padding: 3rem 2rem;
}

 .fullscreen-background {
            width: 100%;
            height: 85vh;
	 margin-top: 40px;
            background-image: url('https://www.brandiful.it/img/Brandiful-header_XL.jpg'); /* Link all'immagine per schermi grandi */
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
	 overflow: hidden;
	  display: flex;
            flex-direction: column;
	 background-position: right;
           
        }

        @media only screen and (max-width: 640px) {
            .fullscreen-background {
                background-image: url('https://www.brandiful.it/img/Brandiful-header_XS.jpg'); /* Link all'immagine per dispositivi mobili verticali */
            }
			 .fullscreen-background {
        overflow: hidden;
        height: 840px;
        background-position: bottom;
        width: 96%;
        padding: 2%;
        background-size: inherit;
			}
			.left h1 {
	margin-top: 1.5rem!important;
        }	
        }
			 @media only screen and (min-width: 641px) and (max-width: 768px) {
            .fullscreen-background {
                background-image: url('https://www.brandiful.it/img/Brandiful-header_SM.jpg'); /* Link all'immagine per schermi medi */
            }
				 .fullscreen-background {
            height: 836px;
        overflow: hidden;
        background-position: bottom;
		
			}
        }

        @media only screen and (min-width: 768px) and (max-width: 1023px) {
            .fullscreen-background {
                background-image: url('https://www.brandiful.it/img/Brandiful-header_MD.jpg'); /* Link all'immagine per schermi medi */
            }
        }

        @media only screen and (min-width: 1024px) {
            .fullscreen-background {
                background-image: url('https://www.brandiful.it/img/Brandiful-header_XL.jpg'); /* Link all'immagine per schermi grandi */
            }
        }

@media (max-width: 768px) {
    .left, .right {
        width: 96%;
		 padding: 2%;
    }
}

.left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
	margin-top: 5rem;
	font-weight: 800;
}

.left p {
    font-size: 1.5rem;
    color: #555;
	font-weight: 600;
}

.left h1, .left p {
    opacity: 0;
    transform: translateY(20px);
    animation: animateBottom 1s forwards;
	line-height: 1.2;
}

.left h1 {
    animation-delay: 0.4s;
}

.left p {
    animation-delay: 0.6s;
}

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

centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

.centered-inner-content {
    text-align: center;
	margin-top: 2rem;
}

.centered-inner-content .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 1.3rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #EE4243;
    color: white;
    border-radius: 5px;
	margin-top: 0.3rem;
}

.centered-inner-content .btn:hover {
    background-color: #FF6666;
}

.centered-inner-content .sub-text {
    font-size: 0.8rem;
    color: #555;
	margin-bottom: -0.2rem;
}
.text-content {
    padding: 2rem;
    text-align: center;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.text-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
	margin-top: -0.3rem;
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
	line-height: 1;
}

.brand-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem;
}

.brand-text {
    flex: 1;
    padding-right: 1rem;
}

.brand-image {
    flex: 1;
    text-align: center;
}

.brand-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .brand-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-text {
        padding-right: 0;
        padding-bottom: 1rem;
    }
}

.brand-easy-section {
    padding: 2rem;
    text-align: center;
}

.brand-easy-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.brand-easy-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.brand-easy-section strong {
    font-weight: 700;
}

.cards {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.cards img {
    max-width: 80%;
    margin: 0 1rem;
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .cards img {
        margin: 1rem 0;
    }
}

.create-brand-section {
    text-align: center;
    padding: 2rem 1rem;
}

.create-brand-section h2 {
    font-size: 2rem;
    color: #EE4243;
    margin-bottom: 0.5rem;
}

.create-brand-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}



.brand-image {
    margin-top: 2rem;
}

.brand-image img {
    max-width: 100%;
    height: auto;
}
.brand-image2 img {
    max-width: 50%;
    height: auto;
}
@media (max-width: 992px) {
    .brand-image2 img {
        max-width: 70%;
    }
}

@media (max-width: 600px) {
    .brand-image2 img {
        max-width: 88%;
    }
}

.about-brandiful-section {
    padding: 2rem 1rem;
    text-align: center;
}



.about-brandiful-section h2 {
    font-size: 2rem;
    color: #EE4243;
    margin-bottom: 1rem;
}

.about-brandiful-section p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
	text-align: left;
	padding: 0 3%;
}

.about-brandiful-section strong {
    font-weight: 700;
}

.image-container {
    display: flex;
    width: 100%;
}

.image-container img {
    width: 33.33%;
    height: auto;
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }

    .image-container img {
        width: 100%;
    }
	.rectangle {
            
            width: 80%;
           
        }
}

   .rectangle {
            background-color: #d3d3d3;
            border-radius: 15px;
            padding: 2rem;
            width: 50%;
            margin: 2rem auto;
        }
        .rectangle ul {
            list-style-type: disc;
            padding-left: 1.5rem;
			text-align: left;
        }
        .svg-container {
            text-align: center;
            margin: 20px auto;
        }
        .svg-container img {
            width: 40%;
        }
        @media (max-width: 1024px) and (min-width: 768px) {
            .svg-container img {
                width: 50%;
            }
        }
        @media (max-width: 767px) {
            .svg-container img {
                width: 60%;
            }
        }
.istruction-section {
    text-align: center;
    padding: 2rem 1rem;
}

.istruction-section h2 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 0.5rem;
}

.istruction-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}
        .istruction-container {
            display: inline-block;
            width: 40%;
            margin: 5%;
			float: left;
			
        }

        .istruction-container img {
            width: 100%;
            height: auto;
			
            
        }
        @media (max-width: 767px) {
            .istruction-container {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
        .announcement {
            background-color: #EE4243;
            color: white;
            text-align: center;
            padding: 2rem 0;
            font-size: 1.5em;
            font-weight: bold;
            margin: 0;
			clear: both;
        }
        .order-container {
            display: inline-block;
            width: 40%;
            margin: 5%;
			float: left;
			
        }

        .order-container img {
            width: 100%;
            height: auto;
			
            
        }
.order-container .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
        @media (max-width: 767px) {
            .order-container {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }

/* Stile per la finestra modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Sfondo scuro trasparente */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* Riduci il margine per posizionare meglio la finestra */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    position: relative; /* Per posizionare la X */
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.modal-image {
    flex: 1;
    padding-right: 20px;
}

.modal-form {
    flex: 2;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
}

.modal-form input[type="text"],
.modal-form input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Stile per il pulsante di invio */
.invia-btn {
    background-color: #EE4243;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.invia-btn:hover {
    background-color: #FF6666;
}

/* Stile per il messaggio di conferma */
#successMessage {
    margin-top: 20px;
    color: green;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.success-icon {
    margin-right: 10px;
    font-size: 24px;
}

