/* === EXISTING STYLES (kept same) === */
/* Add these variables at the top of your existing style.css (or merge them into it) */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #F0F0F0;
}


.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(145deg, #1c1c1c, #2c2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: auto;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 520px;
    margin-bottom: 1em;
    border: 3px solid #CCCCCC;
    padding: 8px;
    background-color: #1F181A;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.3em;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.2em;
}

.hero-button {
    padding: 1em 2em;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.hero-button:hover {
    background-color: #c42b39;
}

section {
    padding: 3em 2em;
    border-bottom: 1px solid #3D2F33;
    text-align: center;
}

.services-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: center;
    margin-top: 1em;
}

.services-list li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

footer {
    text-align: center;
    padding: 1.5em;
    background-color: #1F181A;
    color: #888888;
}

button {
    padding: 0.75em 1.5em;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #666;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    font-size: 28px;
    color: #c0c0c0;
    transition: 0.3s;
}
.social-icons a.whatsapp:hover,
.social-icons a.facebook:hover,
.social-icons a.instagram:hover {
    color: #000000;
}

/* === RESPONSIVE DESIGN === */

/* Tablets */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .hero-logo {
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        padding: 2em 1em;
        height: 50vh; /* allow content to fit */
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .hero-logo {
        max-width: 220px;
    }
    .hero-button {
        padding: 0.8em 1.2em;
        font-size: 0.9em;
    }
    section {
        padding: 2em 1em;
    }
    .services-list li {
        font-size: 1em;
    }
    .social-icons a {
        font-size: 22px;
    }
}












