/* Minimalist style */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

a {
    color: #a0872e;
    text-decoration: none;
}

a:hover {
    color: #a0872e;
    text-decoration: underline;
}

.logo {
    height: 50px; /* Regola l'altezza del logo */
    width: auto; /* Mantiene le proporzioni */
}

.btn-primary {
    background-color: #B8860B;
    border-color: #B8860B;
    color: white; /* Testo bianco per contrastare */
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #996B0A; /* Un colore leggermente più scuro per l'hover */
    border-color: #996B0A;
    color: white;
}

.bg-light {
    background-color: #fff9f1!important; /* Arancione pallido chiaro */
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content-wrapper {
    flex: 1;
}

/* Menu */

.announcement-bar {
    background-color: #1bad8f; /* Colore di sfondo: blu */
    font-size: 1rem;
    padding: 2px;
}

.announcement-bar a {
    text-decoration: none;
    color: #fff; /* Colore testo: bianco */
    font-weight: bold;
}

.announcement-bar a:hover {
    
    background-color: #127863; /* Colore di sfondo al hover */
    color: #fff;
}

/* Modal */
.modal-content {
    border-radius: 12px;
}

.modal-header {
    background: linear-gradient(90deg, #1bad8f, #18a689);
    border-bottom: none;
}

.modal-header h5 {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1bad8f;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.6;
}

.modal-body a.btn {
    font-size: 1.2rem;
    border-radius: 8px;
    font-weight: bold;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: none;
}

.modal-footer small {
    font-size: 0.9rem;
    color: #6c757d;
}





/* Banner */
.jumbotron {
    background: linear-gradient(135deg, #007bff, #00a3ff);
    color: #fff;
    padding: 6rem;
    border-radius: 10px;
}

/* Footer styling */
footer {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Button */
.btn {
    border-radius: 50px;
    padding: 0.5rem 2rem;
}

/* Testimonials */
blockquote {
    font-style: italic;
    margin: 1.5rem auto;
    padding: 1rem;
    border-left: 5px solid #007bff;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.text-shadow-subtle {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7); /* Ombreggiatura leggera sotto il testo */
}

.testimonial {
    font-style: italic;
}

.more-text {
    display: none;
}

.read-more {
    color: #B8860B;
    cursor: pointer;
    text-decoration: underline;
}

.dots {
    display: inline;
}


/* Pulsante Whatsapp */
/* Stile per il pulsante WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Assicurarsi che sia sopra altri elementi */
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #20b55b;
}

.whatsapp-button i {
    font-size: 24px;
}

/* Planes */
.card-header {
    font-weight: bold;
    text-transform: uppercase;
}

.table-hover tbody tr:hover {
    background-color: #f9f9f9;
}

.btn-primary {
    background-color: #B8860B;
    border-color: #B8860B;
}

.btn-primary:hover {
    background-color: #A0760B;
    border-color: #A0760B;
}

.btn-outline-primary {
    border-color: #B8860B;
    color:#B8860B;
}

.btn-outline-primary:hover {
    background-color: #B8860B;
    border-color: #B8860B;
}



/* -------------------------- WEBINAR PAGE ------------------------------- */

/* Contenuti del webinar */
.content-card {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.content-card p {
    font-size: 1rem;
    color: #555;
}

/* Timer */
.timer-box {
    border-radius: 12px;
    padding: 1rem;
    margin-top: -4rem;
    position: absolute;
    width: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Stile per la timeline centrata */
/* Timeline container */
.timeline {
    position: relative;
    padding-left: 2rem; /* Sposta il contenuto rispetto alla riga centrale */
}

/* Riga verticale */
.timeline::before {
    content: "";
    position: absolute;
    left: 1rem; /* Posiziona la riga verticale */
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ddd;
}

/* Singolo elemento della timeline */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Icone */
.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Card */
.timeline-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}






/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    /* -------------------------- WEBINAR PAGE ------------------------------- */

    /* Timer */
    .timer-box {
        width: 90%;
    }
}

