:root {
    --color-primary: #1a1a1a;
    --color-secondary: #c0a062; /* Gold/Bronze */
    --color-text: #333333;
    --color-bg-light: #f9f9f9;
    --color-bg-dark: #121212;
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --spacing-container: 1200px;
    --transition-standard: all 0.4s ease;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition-standard); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-primary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-secondary);
    color: #fff;
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Container */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-list a.active, .nav-list a:hover {
    color: var(--color-secondary);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    /* FIX: Removed 'assets/' path. Now points to root folder. */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero-bg.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: var(--transition-standard);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Mission / Vision (Dark) */
.mission-vision {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: #fff;
    /* FIX: Removed 'assets/' path. Now points to root folder. */
    background-image: url('bg-dark.webp'); 
    background-attachment: fixed;
    background-size: cover;
}
.mission-vision h2 { color: #fff; }
.mission-vision p { color: #ccc; max-width: 800px; margin: 0 auto; text-align: center; font-size: 1.1rem;}

/* Footer */
.main-footer {
    background: var(--color-primary);
    color: #fff;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; }
.footer-col ul li a:hover { color: var(--color-secondary); }

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile */
.mobile-menu-toggle { display: none; }

@media (max-width: 768px) {
    .nav-list { display: none; }
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    .mobile-menu-toggle .bar {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--color-primary);
        margin: 5px 0;
    }
    .hero-content h1 { font-size: 2.5rem; }
}