/* CSS Reset */
html,
body,
ul,
ol,
form {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    background-color: #222;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: cadetblue;
    margin-top: 40px;
}

h2 {
    color: white;
    margin-top: 20px;
}

h3 {
    color: gray;
    margin-top: 30px;
}

p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

ul {
    color: #fff;
    margin-left: 0;
    padding-left: 20px;
}

ol {
    color: #fff;
    margin-left: 0;
    padding-left: 20px;
}

img {
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0;
}

b {
    font-weight: bold;
}

a {
    color: #008080;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout and Structure */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.flex-item {
    flex-basis: calc(50% - 20px);
    margin-bottom: 20px;
    display: inline-block;
}

.navbar {
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.navbar a {
    float: left;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #555;
    color: #fff;
}

.navbar a.active {
    background-color: #008080;
    color: #fff;
}

.navbar .logo {
    margin-left: auto;
    max-height: 40px;
    margin-top: 0px;
    align-content: space-between;
    justify-content: flex-end;
}

.button {
    display: inline-block;
    background-color: #C12157;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.button:hover {
    background-color: #800000;
}

.banner {
    background-color: #5f9ea2;
    color: black;
    padding: 10px;
    text-align: center;
}

.banner h2 {
    margin: 0;
    font-size: 24px;
}

.contact-methods {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;

}

.contact-item img {
    margin-right: 10px;
    max-height: 60px;
}


.colorful-box {
    background-color: #ffcccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.colorful-text {
    color: #660066;
    font-size: 18px;
}

/* Parallax Styling */
.parallax {
    background-image: url('https://i.gifer.com/93vb.gif');
    background-attachment: local;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 300px;

    overflow: hidden;
}

.parallax-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table,
th,
td {
    border: 1px solid black;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #C12157;
    color: black;
}

/* Service page image styles*/
.service-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    max-height: 300px;
}

/*Gallery Styles*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.gallery a {
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Styles */
form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

textarea {
    resize: vertical;
}

/* Media Query for mobile */
@media (max-width: 600px) {
    .flex-item {
        flex-basis: 100%;
    }

    input,
    textarea {
        padding: 8px;
    }

    .navbar a {
        flex-basis: 33%;
        padding: 14px 8px;
        box-sizing: border-box;
    }

    .navbar .logo {
        max-height: 60px;
    }
}

/*Media Query for larger displays */
@media (min-width: 601px) {
    img {
        display: block;
        margin: 0 auto;
    }
}


/* Footer Styles */
footer {
    text-align: center;
    color: #808080;
    font-size: 14px;
    padding: 20px;
    background-color: #333;
    width: 100%;
}
