/* --- styles.css --- */
:root {
    /* Golden Fleet Palette */
    --navy-deep: #051421;
    --navy-light: #112240;
    --gold-main: #C5A059;
    --gold-bright: #E6C880;
    --text-white: #E6F1FF;
    --text-gray: #8892B0;
    --accent-red: #8B0000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--navy-deep);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: var(--gold-bright); }

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 20, 33, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.logo { font-size: 1.5rem; letter-spacing: 2px; color: var(--text-white); }
.logo span { color: var(--gold-main); }
.nav-links a { margin-left: 30px; font-size: 0.85rem; letter-spacing: 1px; color: var(--text-gray); }

/* HERO SECTIONS (Updated for Multi-Page Support) */
.hero {
    min-height: 60vh; /* Default is smaller for sub-pages */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    background: radial-gradient(circle at center, #1a2f4d 0%, var(--navy-deep) 100%);
}

.hero-full { 
    height: 100vh; /* Full screen ONLY for homepage */
} 

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 900px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 60px;
    background: rgba(5, 20, 33, 0.85);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.hero h2 { color: var(--gold-main); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 15px; }
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #C5A059, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin: 0 auto 40px auto; }

/* POLICY CONTENT (UPDATED TO MATCH HERO) */
.container { 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 120px 5% 50px 5%; 
}

.policy-content {
    /* Exact style match for .hero-content */
    background: rgba(5, 20, 33, 0.85); /* Dark, semi-transparent overlay */
    border: 1px solid rgba(197, 160, 89, 0.3); /* The Gold Border */
    box-shadow: 0 0 50px rgba(0,0,0,0.8); /* Deep Shadow */
    padding: 40px;
    z-index: 2;
    position: relative;
    backdrop-filter: blur(5px); /* Optional: Adds a slight blur behind the box */
}

/* Headers inside the policy box */
.policy-content h2 { 
    margin-top: 30px; 
    margin-bottom: 15px; 
    font-size: 1.4rem; 
    color: var(--gold-main); 
    border-bottom: 1px solid rgba(197, 160, 89, 0.3); /* Matching underline */
    padding-bottom: 10px; 
}

/* Text readability */
.policy-content p, .policy-content li { 
    color: var(--text-gray); 
    margin-bottom: 15px; 
    line-height: 1.8;
}

.policy-content ul { 
    margin-left: 20px; 
}

/* ... keep the footer CSS below this ... */

/* UTILITY CLASSES */
.btn {
    padding: 15px 40px;
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 20px;
}
.btn:hover { background: var(--gold-main); color: var(--navy-deep); }

/* GRID SYSTEM */
.section-padding { padding: 100px 5%; }
.bg-dark { background: var(--navy-deep); }
.bg-light { background: #081b2e; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h3 { color: var(--gold-main); letter-spacing: 2px; font-size: 1rem; }
.section-header h2 { font-size: 2.5rem; margin-top: 10px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--navy-light);
    padding: 40px;
    border-top: 2px solid var(--gold-main);
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-10px); }
.card-value { font-size: 3rem; font-weight: 700; color: var(--text-white); font-family: 'Cinzel', serif; }
.card-label { color: var(--gold-main); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin: 10px 0 15px 0; }
.card-desc { font-size: 0.95rem; color: var(--text-gray); }

/* IMAGES & BLOG */
.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
}
.blueprint-img { width: 100%; height: auto; display: block; border: 1px solid #1f3a58; }
.caption { margin-top: 20px; color: var(--gold-main); font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 2px; }

.blog-container { max-width: 800px; margin: 0 auto; }
.blog-post { background: rgba(255,255,255,0.03); border: 1px solid rgba(197, 160, 89, 0.1); padding: 40px; border-radius: 4px; }
.blog-meta { color: var(--gold-main); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: block; }
.blog-title { font-size: 2rem; margin-bottom: 25px; color: var(--text-white); line-height: 1.3; }
.blog-content p { margin-bottom: 20px; color: #b0b8d1; font-size: 1.05rem; }
.blog-content strong { color: var(--text-white); }
.blog-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.tag { display: inline-block; padding: 5px 15px; background: rgba(197, 160, 89, 0.1); color: var(--gold-main); font-size: 0.75rem; margin-right: 10px; border-radius: 50px; }

/* FOOTER */
footer {
    background: #020b14;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.disclaimer-box {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #333;
    display: inline-block;
    max-width: 800px;
}
.disclaimer-text { color: #555; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }

@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-content { padding: 30px; margin: 0 15px; }
    .section-header h2 { font-size: 2rem; }
}