/* --- UNIVERSAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --logo-gold: #C5A059;   /* Heading/Accent Gold */
    --text-gold: #E8DCCA;   /* Champagne Text Gold */
    --bg-black: #121212;    /* Main Background */
    --bg-card: #1E1E1E;     /* Project Card Background */
}

body {
    background-color: var(--bg-black);
    color: var(--text-gold);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }

/* --- LOGO CENTERING --- */
.top-bar {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    height: 100px; /* Adjust this to change logo size */
    width: auto;
    display: block;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    color: var(--logo-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
}

p {
    color: var(--text-gold);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

.back-link {
    color: var(--logo-gold);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle, #222 0%, #000 100%);
}

.hero h1 { font-size: 2.5rem; }
.hero-subtext { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px auto; }

/* --- BUTTONS --- */
.gold-btn {
    display: inline-block;
    border: 2px solid var(--logo-gold);
    color: var(--logo-gold);
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.gold-btn:hover {
    background-color: var(--logo-gold);
    color: #000;
}

/* --- FORMS --- */
form { max-width: 600px; margin: 0 auto; }
input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--bg-card);
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
input:focus, textarea:focus { outline: none; border-color: var(--logo-gold); }

/* --- PROJECT CARDS (WORK PAGE) --- */
.project-card {
    background: var(--bg-card);
    margin-bottom: 50px;
    border: 1px solid #222;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 40px;
    text-align: left;
}

.project-info h3 { text-align: left; }
.project-info p { text-align: left; margin: 0; }

.cta-area { text-align: center; padding-top: 40px; }

/* --- FOOTER --- */
footer {
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- RESPONSIVE TWEAKS --- */
@media (min-width: 768px) {
    .project-card { display: flex; align-items: center; }
    .project-img { width: 50%; }
    .project-info { width: 50%; }
    .hero h1 { font-size: 3.5rem; }
}