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

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


/* Header */

header {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 1.8em;
    color: #222;
}

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

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

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

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


/* Hero Section */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #c2a891;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a88f78;
}


/* Services Section */

.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #222;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

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


/* Gallery Section */

.gallery {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 20px;
}


/* About Section */

.about {
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #222;
}


/* Contact Section */

.contact {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #222;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

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

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

contact form input,
contact form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}


/* Footer */

footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}


/* Responsive Design */

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        text-align: center;
    }
    .hero {
        padding: 100px 0;
    }
    .hero h2 {
        font-size: 2.5em;
    }
    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
}


/* Bootstrap Overrides */

.navbar-brand {
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #c2a891;
}

.bg-image {
    background-size: cover;
    background-position: center;
}