/* styles_complete.css */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Avenir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #794242;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Header - Full Width */
header {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #793232;
    padding: 0 15px;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-logo {
    width: 180px;
    height: auto;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

/* Sections Styling */
section {
    width: 100%;
    max-width: 1200px;
    min-height: 250px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
    padding: 40px 15px;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background-color: #FFFFFF;
    color: #793232;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #690000;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #550000;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    padding: 20px;
    align-items: center;
}

.service-card img {
    width: 250px;
    height: 250px;
    vertical-align: middle;
}

.service-card h3 {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #690000;
    font-family: 'Lato', sans-serif;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #794242;
    flex-grow: 1;
}

.service-card-content {
    text-align: left;
}

/* Contact Section */
.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    width: 48%;
    font-size: 18px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    display: block;
    color: #690000;
    text-decoration: none;
    font-weight: bold;
}

.contact form {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

input, textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #794242;
    border-radius: 5px;
}

button {
    background-color: #690000;
    color: white;
    padding: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background-color: #550000;
}

/* Footer - Full Width */
footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #690000;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

footer img {
    width: 100px;
    height: auto;
}

#about {
    background-color: #793232;
    color: white;
    padding: 60px 15px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 10px 20px;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 10px;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .contact {
        flex-direction: column;
        text-align: center;
    }
    .contact-info, .contact form {
        width: 100%;
    }
    .header-logo {
        width: 200px;
        height: auto;
    }
}