/* ======================================================
   THEDREAMERS.ORG - MAIN STYLESHEET
   Version 1.0
   ====================================================== */

/* =========================
   RESET / GLOBAL
   ========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top, rgba(51,214,255,0.08), transparent 35%),
        linear-gradient(to bottom, #0b1220, #111827);
    color: #e6edf7;
    line-height: 1.7;
    min-height: 100vh;
}

/* =========================
   LINKS
   ========================= */

a {
    color: #33d6ff;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #7fe8ff;
}

/* =========================
   LAYOUT
   ========================= */

.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

header {
    padding: 50px 20px 30px 20px;
    text-align: center;
}

header h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #9fb3c8;
    max-width: 760px;
    margin: 0 auto;
}

/* =========================
   QUOTE SECTION
   ========================= */

.quote {
    text-align: center;
    margin: 30px auto 50px auto;
    width: 92%;
    max-width: 900px;
    color: #b7c6d9;
    font-style: italic;
    line-height: 1.9;
}

.quote p {
    margin-bottom: 30px;
}

/* =========================
   GLASS PANELS
   ========================= */

.intro,
.how-it-works,
.contact-panel {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px;
    margin: 30px 0;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* =========================
   IMAGE
   ========================= */

.intro img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 30px;
    display: block;
}

/* =========================
   TEXT
   ========================= */

.intro p,
.how-it-works p,
.contact-panel p {
    margin-bottom: 22px;
    color: #d5dfeb;
    font-size: 1.05rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 35px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* =========================
   HIGHLIGHT BOX
   ========================= */

.highlight {
    background: linear-gradient(
        135deg,
        rgba(51,214,255,0.18),
        rgba(51,214,255,0.06)
    );

    border: 1px solid rgba(51,214,255,0.25);

    padding: 18px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    color: #eaf9ff;
}

/* =========================
   LISTS
   ========================= */

.feature-list {
    padding-left: 25px;
    margin: 25px 0;
}

.feature-list li {
    margin-bottom: 14px;
    color: #d5dfeb;
}

/* =========================
   PRINCIPLES GRID
   ========================= */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.principle-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(51,214,255,0.35);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 0 20px rgba(51,214,255,0.08);
}

.principle-card h3 {
    color: #33d6ff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.principle-card p {
    font-size: 0.95rem;
    color: #b9c8d8;
}

/* =========================
   POLL BUTTON SECTION
   ========================= */

.poll-section {
    text-align: center;
    margin: 50px 0;
}

.poll-section img {
    max-width: 260px;
    width: 100%;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.poll-section img:hover {
    transform: scale(1.03);

    box-shadow:
        0 0 30px rgba(51,214,255,0.2),
        0 10px 30px rgba(0,0,0,0.4);
}

.poll-button-text {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #d7e7f5;
}

/* =========================
   CONTACT FORM
   ========================= */

.contact-form {
    margin-top: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: rgba(51,214,255,0.45);

    box-shadow:
        0 0 0 3px rgba(51,214,255,0.08);
}

.contact-form button {
    background: linear-gradient(
        135deg,
        #33d6ff,
        #1fa8d1
    );

    border: none;
    color: #081018;

    padding: 14px 26px;
    border-radius: 10px;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* =========================
   FOOTER
   ========================= */

footer {
    text-align: center;
    padding: 40px 20px;
    color: #93a6bb;
    font-size: 0.95rem;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    body {
        font-size: 16px;
    }

    header {
        padding-top: 35px;
    }

    .intro,
    .how-it-works,
    .contact-panel {
        padding: 25px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .intro p,
    .how-it-works p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {

    .principles-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 2.2rem;
    }

    .quote {
        font-size: 0.95rem;
    }

    .intro,
    .how-it-works,
    .contact-panel {
        padding: 22px;
    }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    margin-top: 60px;
    padding: 40px 20px;

    background: rgba(10, 15, 25, 0.92);
    border-top: 1px solid rgba(0,255,255,0.15);

    color: rgba(255,255,255,0.72);
    text-align: center;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
}

.footer-mission {
    font-size: 1rem;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.85);
}

.footer-links {
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-links a {
    color: #7df9ff;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: rgba(255,255,255,0.35);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
    .footer-links {
        line-height: 2;
    }

    .footer-links span {
        display: none;
    }

    .footer-links a {
        display: block;
        margin: 6px 0;
    }
}
/* =========================================
   FIXED SITE HEADER / NAVIGATION
========================================= */

.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 15, 26, 0.96);
    border-bottom: 1px solid rgba(51, 214, 255, 0.18);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    color: #33d6ff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-tagline {
    color: #dbe7f4;
    font-size: 0.8rem;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
}

.main-nav a {
    color: #33d6ff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 6px;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(51, 214, 255, 0.12);
    color: #ffffff;
}

/* =========================================
   HOMEPAGE HERO
========================================= */

.hero {
    padding: 80px 20px 45px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 0 auto 20px;
    color: #ffffff;
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #aebfd4;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
}

/* prevent old generic header rules from breaking layout */
body > header:not(.site-header) {
    all: unset;
}

/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 850px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 55px;
    }
}