/* --- Global Styles & Variables --- */
:root {
    --color-black: #121212;
    --color-gold: #D4AF37;
    --color-light-gold: #e7c86a;
    --color-dark-gray: #222222;
    --color-white: #f5f5f5;
    --font-primary: 'Montserrat', sans-serif;
    --font-headings: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-headings);
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-light-gold);
}

/* --- CTA Button --- */
.cta-button {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--color-light-gold);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-cta {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    background-color: var(--color-dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-black);
    padding: 40px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-dark-gray);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 40px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 15px;
    background-color: var(--color-black);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-submit {
    grid-column: 1 / -1;
    width: auto;
    justify-self: center;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-black);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
}

.main-footer p {
    margin-bottom: 0.5rem;
    color: #aaa;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple approach for a single page */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Mobile-friendly CTA button styling */
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: fit-content;
    }

    .hero-cta {
        padding: 12px 18px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group {
        grid-column: 1 / -1;
    }
}