/*
Theme Name: General Work
Theme URI: http://tuosito.it
Author: Ahmed
Version: 1.0
Description: Tema WordPress personalizzato per General Work S.R.L.
Text Domain: generalwork
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 120px;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container, .max-w-7xl {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}
input, textarea, select {
    width: 100%;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

section, div {
    max-width: 100%;
}
.bg-primary { background-color: #1a2b3c; }
.text-accent { color: #b8962e; }
.bg-accent { background-color: #b8962e; }
.border-accent { border-color: #b8962e; }
.hero-gradient {
    background: linear-gradient(rgba(26, 43, 60, 0.75), rgba(26, 43, 60, 0.75)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.nav-link:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width .3s;
}
.nav-link:hover:after { width: 100%; }
/* Animazione per il pulsante WhatsApp */
        .whatsapp-pulse {
            background: #25d366;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }