/* --- 1. Global Setup --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background: url('https://new.kaleidescapesoflight.com/images/background.png') center top / cover no-repeat fixed #0c1a30;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything in the body */
    min-height: 100vh;
}

/* --- 2. Typography --- */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1.5rem;
}

p { text-align: center; margin-bottom: 1.5rem; font-weight: 300; }

/* --- 3. Layout --- */
.content-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-panel {
    width: 100%;
    background: rgba(12, 26, 48, 0.75);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures content inside panel is centered */
}

/* --- 4. Special Elements --- */
.sparkle-text { font-size: 2.8rem; color: #f1d3a1; }
.subtitle { font-size: 1.6rem; margin-top: -10px; }
.new-beginnings { color: #d1ecff; font-size: 1.8rem; }

.alert-box {
    border-top: 1px solid rgba(241, 211, 161, 0.4);
    padding-top: 20px;
    margin-top: 20px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    margin: 20px 0;
    border-left: 4px solid #f1d3a1;
}

.cert-statement h3 { color: #f1d3a1; margin-top: 20px; }

/* --- 5. Packages --- */
.package-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.package-card {
    border: 1px solid #f1d3a1;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(241, 211, 161, 0.1);
}

/* --- 6. Footer & Certification --- */
.site-header { padding: 40px 0; text-align: center; }
.logo { max-width: 450px; width: 90%; }

.certification-footer { padding: 20px 0 60px 0; }
.cert-badge { max-width: 200px; filter: brightness(0) invert(1); opacity: 0.8; }

.site-footer {
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-name { color: #f1d3a1; margin-bottom: 5px; font-size: 2.2rem; font-weight: bold; }
.footer-brand { letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 15px; }
.footer-contact a { color: white; text-decoration: none; font-size: 0.85rem; font-weight: bold; letter-spacing: 1px; }

/* --- Mobile Fixes --- */
@media (max-width: 600px) {
    .glass-panel { padding: 30px 20px; }
    .sparkle-text { font-size: 2rem; }
}
