/* PDF Theme: Gold (#C5A059) and Deep Charcoal */
:root {
    --gold: #C5A059;
    --dark: #1A1A1A;
    --white: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* Navbar Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Hero Section - "Where Every Space Tells a Story" */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: #fdfdfd;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Section Headings - Gold Text */
h1.section-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin: 60px 0 30px;
    text-transform: uppercase;
}

/* Director Section Styling */
.director-section {
    background: #f9f9f9;
    padding: 60px 10%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.director-info h3 {
    color: var(--gold);
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    font-size: 20px;
    color: var(--dark);
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin-top: 20px;
}

/* Projects Grid - Making it look professional */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 5%;
}

.project-item {
    border: 1px solid #eee;
    text-align: center;
    padding-bottom: 20px;
}

.project-item img {
    width: 100%;
    height: auto;
}