/* style.css - Main Stylesheet - Imports all partials */

/* Import order matters for cascade */
@import url("./_variables.css");
@import url("./_base.css");
@import url("./_utilities.css");
@import url("./_components.css");
@import url("./_layout.css");
@import url("./_lang-switcher.css");
@import url("./_animations.css");
@import url("./_side-graphics.css"); /* Import the new side graphics styles */
@import url("./_responsive.css");

/* --- Fixed WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    font-size: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 0 6px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-icon {
    width: 65%;
    height: 65%;
    fill: white;
}
/* --- End Specific Styles --- */

option {
  background-color: var(--accent-purple)
}