/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #ffcc80;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    float: left;
    color: #fff;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #333;
}

header::after {
    content: "";
    display: table;
    clear: both;
}

/* Sections */
.section {
    padding: 60px 0;
}

.home-section {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #fff;
    text-align: center;
}

.home-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.home-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: auto;
}

.services-section {
    background-color: #fff3e0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    flex: 0 0 30%;
    background-color: #ffe0b2;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-10px);
}

.service h3 {
    margin-bottom: 15px;
    color: #e65100;
}

.service p {
    font-size: 1em;
}

/* About Section */
.about-section {
    background-color: #e8f5e9;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-section p {
    max-width: 800px;
    margin: auto;
    font-size: 1em;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    background-color: #f3e5f5;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-item {
    flex: 0 0 32%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background-color: #e0f7fa;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section p {
    max-width: 800px;
    margin: auto 0 20px auto;
    text-align: center;
}

.contact-info {
    list-style: none;
    max-width: 600px;
    margin: auto 0 40px auto;
    text-align: center;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #b2dfdb;
    border-radius: 4px;
    font-size: 1em;
}

.contact-form button {
    padding: 15px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Footer */
footer {
    background-color: #ffcc80;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.social-media a:hover img {
    filter: brightness(0.8) invert(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        flex: 0 0 80%;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        flex: 0 0 80%;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    header h1,
    nav {
        float: none;
        text-align: center;
    }
}