
/* Custom css to overwrite main one  */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* logo size */
/* 
Screen sizes:
- Small devices (sm): min-width 640px
- Medium devices (md): min-width 768px
- Large devices (lg): min-width 1024px
- Extra large devices (xl): min-width 1280px
- 2XL devices (2xl): min-width 1536px
*/
@media screen and (min-width:  768px) {
   img.logo {
    max-height: 10vh;
    width: auto;
}   
}



/* update primary with #00A9A4 */
.btn-primary {
    background-color: #00A9A4 !important;
    border-color: #00A9A4 !important;
}

.btn-primary:hover {
    background-color: #00A9A4 !important;
    border-color: #00A9A4 !important;
}

.text-primary {
    color: #00A9A4 !important;
}

.text-primary:hover {
    color: #00A9A4 !important;
}

.btn-outline-primary {
    border-color: #00A9A4 !important;
    color: #00A9A4 !important;
}

.btn-outline-primary:hover {
    background-color: #00A9A4 !important;
    border-color: #00A9A4 !important;
}

.cursor-pointer{
    cursor: pointer;

}

/* Language switcher style */
#language-switcher, .language-switcher {


    z-index: 1000;
    border: #00A9A4 2px solid;
    border-radius: 5px;
    padding: 10px;
    margin-right: 5px;
    margin-left: 5px;
}
#language-switcher option:checked,
#language-switcher option:focus,
#language-switcher option:hover {
    background-color: #00A9A4 !important;
    color: #fff !important;
    font-weight: 600;

}


/* Testimonial Card Styles */
/* Testimonial Card Styles */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-header h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.testimonial-body .client-quote {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.testimonial-footer {
    border-color: #f0f0f0;
}

.rating-stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-stars i {
    margin-right: 4px;
}
