/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header and Hero Section */
.hero-section {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content .tagline {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-buttons .btn {
    display: inline-block;
    background-color: #c0a16b;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    font-size: 1.1em;
}

.cta-buttons .btn:hover {
    background-color: #a3855a;
}

.cta-buttons .secondary-btn {
    background-color: #555;
}

.cta-buttons .secondary-btn:hover {
    background-color: #333;
}

/* Sections General Styling */
section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:nth-of-type(even) {
    background-color: #f2f2f2;
}

h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    background-color: #c0a16b;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #c0a16b;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1.1em;
    color: #666;
}

/* About Section */
.about-section .about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    color: #555;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Map Section */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contact Form Section */
.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c0a16b;
    outline: none;
}

.contact-section .btn {
    width: 100%;
    padding: 15px;
    background-color: #c0a16b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-section .btn:hover {
    background-color: #a3855a;
}

.success-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1em;
}

.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 0.9em;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content .tagline {
        font-size: 1.2em;
    }

    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2em;
    }

    section {
        padding: 60px 15px;
    }

    .contact-section form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content .tagline {
        font-size: 1em;
    }

    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
    }
}
