:root {
    --bg-dark: #0f1218;
    --bg-card: rgba(24, 29, 38, 0.85);
    --accent-gold: #c5a059;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & Navigation */
.site-header {
    background-color: rgba(15, 18, 24, 0.95);
    border-bottom: 1px solid #2a3241;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-phone {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

.btn-nav {
    background-color: var(--accent-gold);
    color: #000 !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(rgba(15, 18, 24, 0.7), rgba(15, 18, 24, 0.85)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #2a3241;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d4af37;
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: #131720;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #181d26;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2a3241;
}

.service-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(rgba(15, 18, 24, 0.9), rgba(15, 18, 24, 0.95)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background-color: var(--bg-card);
    border: 1px solid #2a3241;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #2a3241;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background-color: #131720;
}

.contact-container {
    max-width: 600px;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-direct {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    background: #181d26;
    padding: 1.2rem;
    border-radius: 6px;
    border: 1px solid #2a3241;
}

.contact-direct p {
    margin-bottom: 0.4rem;
}

.contact-direct p:last-child {
    margin-bottom: 0;
}

.contact-direct a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-direct a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #181d26;
    border: 1px solid #2a3241;
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Footer */
footer {
    padding: 2rem 0;
    background-color: #0b0d12;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid #2a3241;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.4rem;
}

footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}