/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-gold: #d4a017;
    --text-gold: #9e7711;
    /* Darker for better contrast on white */
    --dark-text: #222222;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --accent-gray: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- HEADER --- */
header {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--white);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.cta-button {
    background-color: var(--primary-gold);
    color: var(--dark-text);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #bfa856;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-gold);
    transition: all 0.3s;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 3px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 10px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SERVICES SECTION --- */
.services {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
}

.section-title .line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-gold);
    margin: 10px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-left: 5px solid var(--primary-gold);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--accent-gray);
}

/* --- ABOUT & AREA SECTION --- */
.about-area {
    padding: 5rem 0;
    text-align: center;
}

.area-list {
    margin-top: 2rem;
    font-weight: bold;
    color: var(--text-gold);
    /* Improved contrast */
    font-size: 1.2rem;
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary-gold);
}

.copyright {
    font-size: 0.9rem;
    color: #adadad;
    border-top: 1px solid #444;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-text);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* --- SOCIAL LINKS --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: fill 0.3s;
}

.social-links a:hover svg {
    fill: var(--dark-text);
}