@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@300;400;600&display=swap');

/* --- MASTER VARIABLES --- */
:root {
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --divine-gold: #c5a059;
    --deep-gold: #8e703a;
    --soft-cream: #fdfbfb;
    --glass-white: rgba(255, 255, 255, 0.95);
}

/* --- CORE BODY --- */
body { 
    font-family: 'Montserrat', sans-serif; 
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ebedee 100%); 
    color: #444; 
    margin: 0; 
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- ANGELIC HEADER --- */
header { 
    padding: 100px 20px; /* Increased padding for more breathing room */
    text-align: center; 
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

h1 {
    font-family: 'Cinzel', serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem; /* Increased from 2.2rem for maximum impact */
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text {
    font-size: 1.5rem; /* Increased from 1.1rem */
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* --- FIXED ONE-LINE NAVIGATION --- */
nav { 
    background: white; 
    padding: 25px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    display: block;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--divine-gold);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 1.2rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 45px; 
}

.nav-links a { 
    color: #666; 
    text-decoration: none; 
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px; 
    transition: 0.4s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:hover { 
    color: var(--divine-gold); 
    transform: translateY(-2px);
}

/* --- DUAL PROTOCOL GRID --- */
.dual-protocol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1150px;
    margin: 45px auto;
    padding: 0 20px;
}

@media (max-width: 850px) {
    .dual-protocol-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    .nav-container { flex-direction: column; gap: 15px; }
}

/* --- MESSAGE BOXES & TYPOGRAPHY HIERARCHY --- */
.divine-box, .sacred-box {
    background: white;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    border-radius: 35px;
    border: 2px solid var(--divine-gold);
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.12);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* TITLE: Much bigger than content */
.box-label { 
    font-family: 'Cinzel', serif; 
    color: var(--divine-gold); 
    font-size: 2.2rem; /* Subtitles are now authoritative and large */
    font-weight: 700;
    letter-spacing: 5px; 
    margin-bottom: 25px; 
    text-transform: uppercase;
    line-height: 1.1;
}

.part-indicator {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    font-size: 1rem;
    letter-spacing: 8px;
    margin-bottom: 10px;
    opacity: 0.7;
}

/* CONTENT: Secondary to the Title */
.message-text, .display-text { 
    font-size: 1.4rem; /* Balanced hierarchy: smaller than the box-label */
    font-style: italic; 
    color: #444; 
    line-height: 1.7; 
    max-width: 90%;
}

.keyword-glow, .keyword-text { 
    font-family: 'Cinzel'; 
    color: var(--deep-gold); 
    font-weight: bold; 
    font-size: 1.4rem; 
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* --- 5-SECOND POPUP --- */
.blessing-overlay {
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(255, 255, 255, 0.98); 
    z-index: 9999; 
    justify-content: center; 
    align-items: center; 
}

.blessing-content { 
    background: white; 
    padding: 60px; 
    border-radius: 40px; 
    box-shadow: 0 30px 100px rgba(197, 160, 89, 0.25); 
    text-align: center; 
    max-width: 600px;
    border: 1px solid var(--divine-gold);
    position: relative;
    animation: popupEntry 0.6s ease-out;
}

.close-btn {
    position: absolute;
    top: 25px; right: 25px;
    width: 40px; height: 40px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: #4a3a1e;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

/* --- ELITE GOLD BUTTON --- */
.cta-button { 
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #4a3a1e; 
    padding: 22px 60px; 
    border-radius: 60px; 
    border: none; 
    cursor: pointer; 
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    transition: 0.5s;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.cta-button:hover { 
    background-position: right center;
    transform: scale(1.05) translateY(-3px); 
}

/* --- UTILITY --- */
.fade-out { opacity: 0; transform: translateY(10px); transition: all 0.4s ease; }

footer { 
    text-align: center; 
    padding: 100px 40px; 
    color: #bbb; 
    font-size: 0.9em; 
    letter-spacing: 1px;
}

