:root {
    --orange-color: #f95b26;
}

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

/* Basic styles for header */
header {
    padding: 10px 20px 10px 20px;
    text-align: center;
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    border-bottom: 1px solid #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; 
    background-color:#fff;
}

h1 {
    font-family:Ultra;
    font-size:42px;
    line-height:1.1;
    text-transform:uppercase;
    font-weight:400;
    color:var(--orange-color);
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
}

/* Basic styles for navigation */
nav ul {
    list-style-type: none;
    margin-top:10px;
}

nav ul li {
    display: inline;
    margin: 12px;
}

nav ul li a {
    color: var(--orange-color);
    text-decoration: none;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}


/* Basic styles for main content */
main {
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}

/* Basic styles for sections */
section {
    padding: 20px;
}

#description {
    /*margin-top:110px;*/
    background-image: url('images/Photo\ banner\ for\ webpage.jpg');
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    height: 12.37vw;
}

h2 {
    color: var(--orange-color);
    font-size: 200%;
    margin:10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

p {
    margin-bottom:20px;
}

.text-container {
    display: inline-block; /* Make the text divs behave as inline-block elements */
    width: calc(50% - 4px); /* Set the width of each text div (subtracting margins) */
    vertical-align: top; /* Align the text divs to the top */
    margin: 8px; /* Add some space between text and image divs */
    box-sizing: border-box; /* Include padding and border in the width calculation */
    text-align:left;
    line-height:1.4em;
    font-size:1.1em;
}

.image-container {
    margin:8px;
    display: inline-block; /* Ensure the container only takes up the necessary space */
    vertical-align: top; /* Align the image divs to the top */
}

.image-container img {
    display: block; /* Ensure the image takes up the full space within the container */
    border: 0px solid black; /* Create another solid black border around the image */
    width:320px;
}

.contact-div {
    width: 60%; /* Adjust width as needed */
    margin: 0 auto; /* Center the div horizontally */
    text-align: left; /* Align text to the left */
    padding: 20px; /* Example padding */
    line-height:1.6em;
}

/* Basic styles for footer */
footer {
    background-color: #000;
    color: #fff;
    border-top: 1px solid #000;
    text-align: center;
    padding: 12px;
    width: 100%;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    h3 {
        font-size: 90%;
    }
    
    header {
        flex-direction: column; /* Stack items vertically */
    }

    nav ul li {
        font-size: 90%;
        margin: 6px; /* Remove right margin */
        margin-bottom: 10px; /* Add bottom margin for spacing */
    }

    .text-container {
        width: 100%;
    }

    .contact-div {
        width: 100%; /* Adjust width as needed */
    }

    /*#description {
        margin-top:94px;
        padding:40px;
    }*/
}


