@charset "utf-8";

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navigation table */
.navtable {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    border-collapse: collapse;
    background: #2d2d2d;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #404040;
}

.navtable th {
    padding: 1.5rem 1rem;
    background: #404040;
    border-bottom: 1px solid #555555;
    font-weight: 600;
    color: #ffffff;
}

.navtable th:not(:last-child) {
    border-right: 1px solid #555555;
}

.navtable a {
    color: #64b5f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0.5rem;
}

.navtable a:hover {
    color: #90caf9;
    text-decoration: underline;
}

/* Image section */
.mycoup {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mycoup img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Content sections */
.contentbox {
    max-width: 1000px;
    margin: 2rem auto;
    background: #2d2d2d;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #404040;
}

.myintro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #404040;
    border-left: 4px solid #64b5f6;
    border-radius: 4px;
    font-style: italic;
    color: #e0e0e0;
}

.soarerbibleintro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #404040;
    border-left: 4px solid #64b5f6;
    border-radius: 4px;
    text-align: left;
    color: #e0e0e0;
}

/* Links */
a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #90caf9;
    text-decoration: underline;
}

a:visited {
    color: #64b5f6;
}

/* Footer */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0d1117;
    border-top: 1px solid #30363d;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #8b949e;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .navtable {
        margin: 2rem auto;
    }
    
    .navtable th {
        padding: 1rem 0.5rem;
    }
    
    .navtable a {
        font-size: 0.9rem;
    }
    
    .contentbox, .mycoup {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .myintro, .soarerbibleintro {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .navtable {
        display: block;
    }
    
    .navtable thead {
        display: block;
    }
    
    .navtable tr {
        display: block;
        margin-bottom: 1rem;
    }
    
    .navtable th {
        display: block;
        border-right: none;
        border-bottom: 1px solid #555555;
    }
    
    .navtable th:last-child {
        border-bottom: none;
    }
}