/*
 Theme Name:   Twenty Twenty-Five Child
 Template:     twentytwentyfive
 Description:  A child theme for Twenty Twenty-Five
 Version:      1.0
*/

/* Reset body styles to avoid affecting header/footer */
body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* Header styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20;
    padding: 10px 20px;
    box-sizing: border-box;
}

.site-branding {
    text-align: center;
}

.site-title {
    margin: 0;
    font-size: 24px;
}

.site-title a {
    color: #ffcc00;
    text-decoration: none;
}

.site-description {
    margin: 5px 0 0;
    font-size: 14px;
    color: #66ffcc;
}

.main-navigation {
    margin-top: 10px;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.main-navigation a:hover {
    color: #ffcc00;
}

/* Main content container */
.site-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content {
    position: absolute;
    z-index: 10;
    text-align: center;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #ffcc00;
    margin-bottom: 10px;
}

.proverb {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #66ffcc;
    opacity: 0;
    animation: fadeInOut 10s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    25%, 75% { opacity: 1; }
}

.login-btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: white;
    background: #ff5733;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.login-btn:hover {
    background: #c70039;
}

/* Footer styles */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center;
}

.site-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #66ffcc;
}

.site-info a {
    color: white;
    text-decoration: none;
}

.site-info a:hover {
    color: #ffcc00;
}