/* Google Fonts - Optional but recommended for better typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;500&display=swap');

/* --- Root Variables --- */
:root {
    --primary-gold: #c9a959;
    --dark-bg: #121212;
    --medium-bg: #1a1a1a;
    --light-text: #ffffff;
    --dark-text: #000000;
    --grey-text: #cccccc;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* --- General Body & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--light-text);
}

p {
    color: var(--grey-text);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: #e0c57f;
}

section {
    padding: 80px 0;
    overflow: hidden; /* Prevents elements from "flying out" */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.cta-button {
    background-color: var(--primary-gold);
    color: var(--dark-text);
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e0c57f;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-text);
}

/* --- Hero Section (Homepage) --- */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-background.jpg') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.learn-more-btn {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--dark-text);
    padding: 15px 30px;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 5px;
}

/* --- Services Section --- */
#services {
    background-color: var(--medium-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background-color: var(--dark-bg);
    padding: 30px;
    border: 1px solid #333;
    border-top: 4px solid var(--primary-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.service-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}
.service-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
}

/* --- About Founder Section --- */
#about-founder .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.founder-text { flex: 1; }
.founder-image {
    flex: 1;
    max-width: 450px;
    text-align: center;
}
.founder-image img {
    width: 100%;
    border-radius: 10px;
}

/* All other page styles from the previous version remain valid */
/* --- Testimonials, FAQ, Footer, About Page, Contact Page, Learn Page --- */

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 78px; /* Height of header */
        left: 0;
        background-color: var(--dark-bg);
        border-top: 1px solid #333;
    }
    .nav-links.active { display: flex; }
    .nav-links li {
        text-align: center;
        padding: 15px 0;
        margin: 0;
        width: 100%;
    }
    .menu-toggle { display: block; }

    #hero .container, #about-founder .container {
        flex-direction: column;
        text-align: center;
    }
    .founder-image { margin-top: 30px; }
}
/* --- ARTICLE PAGE STYLES --- */
.article-body {
    padding: 60px 0;
}
.article-container {
    max-width: 800px; /* Makes text easier to read */
    margin: 0 auto;
}
.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}
.article-content ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}
.article-content a {
    font-weight: bold;
    text-decoration: underline;
}

/* --- SIMPLIFIED CONTACT PAGE STYLES --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive adjustment for the contact page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack vertically on small screens */
    }
}