:root {
    --primary-color: #d4af37; /* Gold Accent */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --text-color: #e0e0e0;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1598371839696-5c5bb00bdc28?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #000;
}

@media(min-width: 768px) {
    .hero h1 { font-size: 5rem; }
}

.btn-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 35px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* Services */
.service-card {
    background-color: var(--darker-bg);
    padding: 40px 20px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s, filter 0.3s;
    cursor: pointer;
    border-radius: 2px;
}

.gallery-item {
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Directions / Map */
.map-container {
    height: 450px;
    width: 100%;
    border: 1px solid var(--primary-color);
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Contact */
.contact-form input, .contact-form textarea {
    background-color: var(--darker-bg);
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 0;
}

.contact-form input:focus, .contact-form textarea:focus {
    background-color: var(--darker-bg);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}