/* Sanctum Website Styles */

body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'GFS Didot', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.theme-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.6));
    border: 1px solid rgba(0,0,0,0.08);
    color: #333;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    line-height: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 160ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
/* Ensure consistent icon sizing */
.theme-toggle svg {
    display: block;
    width: 18px;
    height: 18px;
}

.theme-toggle:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0,0,0,0.10), 0 6px 12px rgba(0,0,0,0.10);
}

.theme-toggle:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.10);
}

.theme-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35), 0 10px 20px rgba(0,0,0,0.06);
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

p {
    color: #666;
    line-height: 1.5;
}

.coming-soon {
    color: #999;
    font-style: italic;
    margin-top: 10px;
    font-size: 16px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.backer-text {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    color: #888;
    font-style: italic;
    z-index: 1000;
}

.contact-text {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: #888;
    font-style: italic;
    z-index: 1000;
    text-align: right;
}

.contact-text .email {
    color: #888;
    text-decoration: underline;
}

/* Dark theme */
body.dark {
    background-color: #000000;
    color: #ffffff;
}

body.dark p,
body.dark .coming-soon {
    color: #ffffff;
}

body.dark .backer-text,
body.dark .contact-text,
body.dark .contact-text .email {
    color: #bbbbbb;
}

body.dark .theme-toggle {
    background: linear-gradient(180deg, rgba(32,32,32,0.75), rgba(22,22,22,0.6));
    border-color: rgba(255,255,255,0.08);
    color: #f1f1f1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.35);
}

body.dark .theme-toggle:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.45);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .logo {
        max-width: 130%;
        margin-bottom: 4px;
        min-height: 80px;
    }
    
    p {
        font-size: 18px !important;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .coming-soon {
        font-size: 16px !important;
        margin-top: 15px;
    }
    
    .backer-text,
    .contact-text {
        font-size: 11px;
        bottom: 10px;
        max-width: 40%;
        word-wrap: break-word;
    }
    
    .backer-text {
        left: 10px;
    }
    
    .contact-text {
        right: 10px;
        text-align: right;
    }
}
