/* --- GLOBAL STYLES --- */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f2f6fa;
    color: #333;
}

/* Mobile Layout Improvements */
@media (max-width: 768px) {
    section {
        margin: 20px;
        padding: 25px;
    }

    nav a {
        margin: 0 10px;
        font-size: 0.9em;
    }

    header img {
        width: 90px;
    }

    h1 {
        font-size: 1.6em;
    }
}

/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header, Nav, Section, Footer – same as before */
header {
    background-color: #c25401;
    color: white;
    padding: 30px 40px;
    text-align: center;
}

header img {
    width: 120px;
    margin-bottom: 15px;
}

nav {
    background-color: #c25401;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s, transform 0.3s;
}

section {
    padding: 40px;
    background: white;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* --- GALLERY SLIDER --- */
.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
}

.slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slider img {
    width: 100%;
    border-radius: 15px;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

.slider-btn:hover {
    background-color: rgba(0,0,0,0.6);
}

/* Better button and form responsiveness */
button, form input, form textarea {
    font-size: 1em;
}

@media (max-width: 500px) {
    .slider-btn {
        padding: 8px;
        font-size: 16px;
    }
    /* Contact form styling */
.contact-form {
    max-width: 600px;
    margin: auto;
}

form input, 
form textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1em;
    transition: border 0.3s;
    box-sizing: border-box;
}

form button {
    background-color: #004d99;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
}

form button:hover {
    background-color: #003f7d;
}

/* Mobile form improvements */
@media (max-width: 600px) {
    form input, form textarea {
        font-size: 0.95em;
    }

    form button {
        font-size: 1em;
        padding: 14px;
    }
}

}

