/* General 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1a2a3a; /* Dark Navy */
    text-align: center;
    margin-bottom: 30px;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-btn {
    background-color: #b8860b; /* Gold Accent */
    color: #fff;
    border: 2px solid #b8860b;
}

.primary-btn:hover {
    background-color: #a3760a;
    border-color: #a3760a;
}

.secondary-btn {
    background-color: transparent;
    color: #1a2a3a; /* Dark Navy */
    border: 2px solid #1a2a3a;
}

.secondary-btn:hover {
    background-color: #1a2a3a;
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content .tagline {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.cta-buttons a {
    margin: 0 10px;
}

/* Sections */
section {
    padding: 80px 20px;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

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

/* Services Section */
.services-section h2 {
    font-size: 2.5em;
}

.service-items {
    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.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.service-item p {
    color: #555;
    font-size: 1.1em;
    text-align: left;
}

/* About Section */
.about-section .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1em;
    color: #444;
}

.about-section h2 {
    font-size: 2.5em;
}

/* Gallery Section */
.gallery-section h2 {
    font-size: 2.5em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    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-section h2 {
    font-size: 2.5em;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Section */
.contact-section {
    background-color: #1a2a3a; /* Dark Navy */
    color: #fff;
}

.contact-section h2 {
    color: #fff;
    font-size: 2.5em;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #2a3b4c; /* Slightly lighter navy */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #556a7f;
    border-radius: 5px;
    background-color: #3a4c5d;
    color: #fff;
    font-size: 1em;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #b8860b;
    outline: none;
}

.contact-form .primary-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
}

.success-message {
    text-align: center;
    padding: 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
}

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

/* Footer */
footer {
    background-color: #1a2a3a;
    color: #f0f0f0;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.9em;
}

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

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

    .cta-buttons a {
        display: block;
        margin: 10px 0;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: 1.5em;
    }

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

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

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

    section {
        padding: 50px 15px;
    }

    h2 {
        font-size: 2em;
    }
}
