/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37; /* Gold accent */
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    color: #f0f0f0;
    font-weight: 400;
}

h3 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
    margin: 15px auto 0;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #D4AF37;
    color: #0a0a0a;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #f0f0f0;
    color: #D4AF37;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x1080/333333/D4AF37?text=Luxury+Background') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    padding: 20px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Section Styles */
.section {
    padding: 80px 0;
    border-bottom: 1px solid #1a1a1a;
}

.section:last-of-type {
    border-bottom: none;
}

#about p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1em;
}

/* Services Section */
.services-section {
    background-color: #121212;
}

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

.service-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-item h4 {
    color: #D4AF37;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-item p {
    color: #b0b0b0;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 15px;
    border: 1px solid #333;
    background-color: #0a0a0a;
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form button {
    width: 100%;
    border: none;
}

.contact-info {
    margin-top: 30px;
    font-size: 1.1em;
    color: #b0b0b0;
}

/* Footer */
footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

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

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.8em;
    }

    .hero {
        height: 70vh;
    }

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

    .section {
        padding: 50px 0;
    }
}
