body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
}

/* Top contact bar */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: #333;
    z-index: 99;
}

header .contact-info {
    align-items: center;
    padding: 0px 20px;
}

/* Navigation bar */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 56px; /* Adjusted for header height */
    left: 0;
    width: 100%;
    background-color: rgb(112, 0, 56);
    color: #fff;
    z-index: 999;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, .42), 
                0 3px 20px 0 rgba(0, 0, 0, .12), 
                0 8px 10px -5px rgba(0, 0, 0, .2);
}

nav a {
    float: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #575757;
}

nav a.active {
    background-color: #bd1455;
    color: white;
}

/* The dropdown container */
nav .dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
nav .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    /* Important for vertical align on mobile phones */
    margin: 0;
    /* Important for vertical align on mobile phones */ }



.main  {
    margin-top: 100px; /* Adjusted for header and nav height */
    display: block;
    overflow: auto;
    justify-content: center;
    margin-left: auto;
    background-color: #f2f2f2;
}

section {
    padding: 20px;
    margin-top: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}






/* About us page */
.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 16px;
}

.contact-address {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}


.contact-form {
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    margin-top: 5px;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}

.map {
    margin-top: 40px;
}

footer {
    background-color: #f2f2f2;
    text-align: center;
    padding: 5px;
    margin-top: 20px;
    color: #666;
}



.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-media a {
    color: #333;
    text-decoration: none;
}
.social-media a:hover {
    color: #555;
}
.social-media i {
    font-size: 24px;
}




section
{
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h1 {
    margin-top: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}   

section h2 {
    margin-top: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif}

section p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
}

section ul {
    list-style-type: disc;
    padding: 0;
}

/* -- Products page -- */
.product-list {
    display: flex;
    gap: 20px;

}

.product-image {
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 150px;

}


/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.jpg');

    /* Set a specific height */
    height: 50%;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    min-width: 200px;
    min-height: 250px;

    margin-bottom: 20px;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; }
