/* Custom CSS for ATNils website */

body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Dark overlay on background */
#header {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Header text */
#header h1 {
    font-size: 3rem;
    font-weight: bold;
}

#header p {
    font-size: 1.2rem;
}

/* Services Section */
#services {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px 0;
}

/* Section title */
#services h2 {
    color: #ff6600;
    font-size: 2rem;
    font-weight: bold;
}

/* Service Box Styling */
.service-box {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    color: #ff6600;
}

.service-box h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 15px;
}

.service-box p {
    color: #666;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: transparent;
    color: #333;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    #header h1 {
        font-size: 2.5rem;
    }

    #header p {
        font-size: 1rem;
    }

    .service-box {
        margin-bottom: 30px;
    }
}

/* Desktop gutters */
@media (min-width: 1024px) {
    #services {
        padding: 70px 20px;
    }
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
