/* ==========================================================================
   1. CORE THEME VARIABLES
   ========================================================================== */
:root {
    --gold: #d4af37;
    --flame: #b22222;
    --sand: #f4ece0;
    --stone: #2c2c2c;
}

/* ==========================================================================
   2. GLOBAL BODY & LAYOUT
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Spectral', serif;
    background-color: var(--sand);
    color: var(--stone);
    font-size: 24px; 
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ==========================================================================
   3. TOP NAVIGATION (NAVBAR)
   ========================================================================== */
.navbar {
    background: var(--stone);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.nav-logo {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 1.8rem;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-family: 'Cinzel', serif;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

/* ==========================================================================
   4. HERO SECTION (High-Stability GitHub Hosted Link)
   ========================================================================== */
.hero {
    /* Using a GitHub-hosted asset to bypass 404 hotlink blocks */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://upload.wikimedia.org/wikipedia/commons/d/da/The_Parthenon_in_Athens.jpg');
    background-color: var(--stone); /* Fallback color */
    background-size: cover;
    background-position: center 30%;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 4.5rem;
    margin: 0;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-shadow: 3px 3px 12px rgba(0,0,0,1);
	
	/* RESTORED SUBTITLE SIZE AND COLOR */
.subtitle {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 3.5rem !important; /* Forces the text to be significantly larger */
    color: #ffffff !important;   /* Forces the bright white color */
    font-weight: 700 !important; /* Adds extra weight for visibility */
    text-shadow: 3px 3px 10px rgba(0,0,0,1) !important;
    margin-top: 20px;
    display: block;
}
}

/* ==========================================================================
   5. CONTENT WRAPPING
   ========================================================================== */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;    
    padding: 20px 20px 60px 20px;
    text-align: left;  
}

.page-subtitle {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.8rem;
    text-align: center;
    color: var(--stone);
    margin-bottom: 40px;
    display: block;
}

h2.section-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 15px;
    margin-top: 40px;
    font-size: 2.8rem;
    text-align: center; 
}

/* ==========================================================================
   6. STAFF / CONTENT GRID LAYOUT
   ========================================================================== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.staff-card {
    background-color: rgba(44, 44, 44, 0.03);
    padding: 25px;
    border-left: 5px solid var(--gold);
}

.role {
    font-family: 'Cinzel', serif;
    color: var(--flame);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.name {
    font-family: 'Spectral', serif;
    color: var(--stone);
    font-style: italic;
    font-size: 1.8rem;
}

/* ==========================================================================
   7. FORM CONTAINER (Magnification Workaround)
   ========================================================================== */
.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.form-container iframe {
    width: 83.3%; 
    height: 2600px; 
    border: none;
    zoom: 1.2; 
    -moz-transform: scale(1.2); 
    -moz-transform-origin: 0 0;
    -webkit-transform: scale(1.2);
    -webkit-transform-origin: 0 0;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--stone);
    color: #ffffff;
    padding: 80px 0 40px 0;
    margin-top: 100px;
    border-top: 5px solid var(--gold);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}