/* General Reset and Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    
   /* This will place the pattern on the left and right sides of the viewport */
    background-image: url('1.png'), url('2.png'); /* Use the pattern twice */
    background-repeat: repeat-y, repeat-y; /* Repeat vertically for both */
    background-position: left top, right top; /* One on the left, one on the right */
    background-size: 550px auto; /* Adjust this if your pattern is wider/narrower */
}

/* Container for content, centered over the white space of the background image */
.container {
    /* Maximum width to fit between the side borders */
    max-width: 900px; 
    width: 100%; 
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
    background-color: transparent; /* Allows the body background to show through */
}

/* Header and Quote Styling */
header {
    margin-bottom: 50px;
}

.quote {
    font-style: italic;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* --- LOGO STYLING --- */
.logo-container {
    margin-bottom: 30px; /* Space below the logo */
}

.mozaik-logo {
    max-width: 200px; /* Adjust the size of the logo as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; 
    margin: 0 auto; /* Center the image */
}
/* -------------------- */

/* Main Content Sections */
section {
    max-width: 750px; /* Constrain text width for readability */
    margin: 25px auto;
    padding: 0 10px;
}

/* Specific Section Styles */
.intro p, .contact p {
    font-size: 1.05em;
    color: #444;
}

.services p {
    font-weight: 700;
    font-size: 1.0em;
    max-width: 600px;
    margin: 30px auto;
}

.contact p {
    line-height: 1.8;
    font-size: 0.95em;
}

/* Link Styling */
a {
    color: #003366; 
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    body {
        background-image: none; /* This line removes the background! */
    }
}

/* Add this new rule to your existing styles.css */
.map-location {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ccc; /* Separator line */
}

.map-location h2 {
    color: #003366;
    margin-bottom: 15px;
}

/* ---------------------------------------------------------------- */
/* Media Query for Mobile Devices (Screen width less than 600px)    */
/* ---------------------------------------------------------------- */

@media (max-width: 600px) {
    
    /* * On small screens, we remove the background patterns 
     * to maximize the content area and prevent horizontal scrolling.
     */
    body {
        background-image: none; /* No side patterns on phones */
    }

    .container {
        /* Ensure the container takes full width on small screens */
        width: 100%;
        padding: 10px; 
        box-shadow: none; /* Optional: remove shadow on phones */
    }

    /* Optional: Shrink font size slightly for readability on phones */
    .content, .quote {
        font-size: 0.9em;
    }
}

/* ---------------------------------------------------------------- */
/* Optional: Media Query for Tablets (Screen width 601px to 992px) */
/* ---------------------------------------------------------------- */

@media (min-width: 601px) and (max-width: 992px) {
    /* For tablets, you might keep the pattern but make it slightly smaller */
    body {
        background-size: 100px auto; /* Smaller pattern width */
    }
}