/*
Theme Name: School House AI
Theme URI: 
Author: Your Name
Description: Custom theme for School House AI application - Beta Release
Version: 0.1-beta
License: GNU General Public License v2 or later
Text Domain: schoolhouseai
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #071019;
    background-image: radial-gradient(circle, rgba(13, 25, 42, 0.8) 2px, transparent 2px);
    background-size: 30px 30px;
    color: #fff;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Developer Banner */
.developer-banner {
    background: linear-gradient(135deg, rgba(0, 200, 180, 0.1) 0%, rgba(160, 32, 240, 0.1) 100%);
    border: 1px solid rgba(0, 200, 180, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.developer-content {
    max-width: 700px;
    margin: 0 auto;
}

.developer-content i {
    font-size: 2rem;
    color: #FF6B6B;
    margin-bottom: 10px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.developer-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}

.developer-content p:first-of-type {
    font-weight: bold;
    color: #00C8B4;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 200, 180, 0.2);
    padding-bottom: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    max-width: 50px;
    height: auto;
    margin-right: 15px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00C8B4;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.main-content {
    text-align: center;
    margin-top: 50px;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: left;
}

/* Beta Notice Styling */
.beta-notice-container {
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
}

.beta-notice {
    font-size: 1.6rem;
    color: #FFC107;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    max-width: 600px;
    margin: 0 auto 20px;
    display: inline-block;
}

.beta-notice i {
    margin-right: 10px;
}

.beta-warning {
    margin-top: 15px;
}

.beta-warning p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 10px 0;
}

.beta-warning a {
    color: #5865F2;
    text-decoration: none;
}

.beta-warning a:hover {
    text-decoration: underline;
}

/* Beta note in modals */
.beta-note {
    margin-top: 20px;
    padding: 12px;
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 5px;
    font-size: 0.9rem;
    color: #FFC107;
}

.beta-note i {
    margin-right: 8px;
}

.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.card {
    width: calc(25% - 15px);
    min-width: 200px;
    background-color: rgba(7, 16, 29, 0.7);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-1 {
    border-color: rgba(0, 200, 180, 0.5);
}

.card-2 {
    border-color: rgba(160, 32, 240, 0.5);
}

.card-3 {
    border-color: rgba(0, 200, 180, 0.5);
}

.card-4 {
    border-color: rgba(253, 165, 15, 0.5);
}

.card-image {
    width: 100%;
    height: 120px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.icon-1 {
    color: #00C8B4;
}

.icon-2 {
    color: #A020F0;
}

.icon-3 {
    color: #00C8B4;
}

.icon-4 {
    color: #FDA50F;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.message {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 60px 0;
    color: #fff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: #0c1c2f;
    margin: 10% auto;
    padding: 25px;
    border: 1px solid rgba(0, 200, 180, 0.3);
    border-radius: 10px;
    width: 70%;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-60px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.close-button:hover {
    color: #00C8B4;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 200, 180, 0.3);
    color: #fff;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.modal-features {
    text-align: left;
    margin: 25px 0;
}

.modal-features h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00C8B4;
}

.modal-features ul {
    list-style: none;
    padding-left: 20px;
}

.modal-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.modal-features li::before {
    content: "•";
    color: #00C8B4;
    position: absolute;
    left: 0;
    top: 0;
}

.modal-button {
    background-color: rgba(0, 200, 180, 0.2);
    color: #00C8B4;
    border: 1px solid rgba(0, 200, 180, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 10px;
}

.modal-button:hover {
    background-color: rgba(0, 200, 180, 0.3);
}

.modal-1 .modal-icon {
    color: #00C8B4;
}

.modal-2 .modal-icon {
    color: #A020F0;
}

.modal-3 .modal-icon {
    color: #00C8B4;
}

.modal-4 .modal-icon {
    color: #FDA50F;
}

.modal-2 .modal-title,
.modal-2 .modal-features h4,
.modal-2 .modal-features li::before {
    color: #A020F0;
}

.modal-4 .modal-title,
.modal-4 .modal-features h4,
.modal-4 .modal-features li::before {
    color: #FDA50F;
}

.modal-2 .modal-button {
    background-color: rgba(160, 32, 240, 0.2);
    color: #A020F0;
    border-color: rgba(160, 32, 240, 0.5);
}

.modal-2 .modal-button:hover {
    background-color: rgba(160, 32, 240, 0.3);
}

.modal-4 .modal-button {
    background-color: rgba(253, 165, 15, 0.2);
    color: #FDA50F;
    border-color: rgba(253, 165, 15, 0.5);
}

.modal-4 .modal-button:hover {
    background-color: rgba(253, 165, 15, 0.3);
}

/* Platform description section styling */
.platform-description {
    margin: 50px 0;
    padding: 30px;
    background-color: rgba(0, 200, 180, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 200, 180, 0.2);
}

.platform-description h2 {
    color: #00C8B4;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.platform-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* API Support Section */
.api-support {
    margin-top: 30px;
    padding: 25px;
    background-color: rgba(0, 100, 200, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 100, 200, 0.2);
}

.api-support h3 {
    color: #00C8B4;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.api-support h3 i {
    margin-right: 10px;
}

.api-providers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.api-badge {
    background: linear-gradient(135deg, rgba(0, 200, 180, 0.2), rgba(0, 150, 180, 0.2));
    border: 1px solid rgba(0, 200, 180, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    color: #00C8B4;
    font-size: 0.95rem;
}

.api-note {
    font-style: italic;
    color: #FFC107;
    margin-top: 15px;
}

/* About Me Section */
.about-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.05) 0%, rgba(0, 200, 180, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(160, 32, 240, 0.2);
}

.about-section h2 {
    color: #A020F0;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.about-section h2 i {
    margin-right: 10px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Coming Soon Section */
.coming-soon-section {
    margin: 60px 0;
    padding: 40px;
    background-color: rgba(255, 193, 7, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.coming-soon-section h2 {
    color: #FFC107;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.coming-soon-section h2 i {
    margin-right: 10px;
}

.coming-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #FFC107;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #FFC107;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Header buttons styling */
.header-buttons {
    display: flex;
    gap: 15px;
}

.discord-button, .donation-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.discord-button {
    background-color: #5865F2;
    color: white;
}

.discord-button:hover {
    background-color: #4752C4;
}

.discord-button i, .donation-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Beer-themed donation button */
.donation-button {
    background-color: #F28E1C;
    color: white;
}

.donation-button:hover {
    background-color: #D97D0D;
}

.donation-button i {
    color: #FFDA44;
}

/* Donation modal styling */
.donation-modal-content {
    text-align: center;
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.donation-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    min-width: 180px;
}

/* Beer-themed donation option */
.beer-option {
    background-color: #F28E1C;
    color: white;
}

.beer-option:hover {
    background-color: #D97D0D;
}

.beer-option i {
    color: #FFDA44;
}

/* Download Section */
.download-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px 30px;
    background-color: rgba(0, 200, 180, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 200, 180, 0.2);
}

.download-section h2 {
    color: #00C8B4;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Download Disclaimer Styling */
.download-disclaimer {
    background-color: rgba(255, 0, 0, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px auto;
    max-width: 600px;
}

.download-disclaimer i {
    font-size: 2rem;
    color: #FF6B6B;
    margin-bottom: 15px;
}

.download-disclaimer p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0;
}

.download-disclaimer p:first-of-type {
    font-size: 1.2rem;
    color: #FF6B6B;
    margin-bottom: 15px;
}

.download-disclaimer strong {
    color: #FF6B6B;
}

.platform-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.current-platform {
    margin-bottom: 25px;
}

.current-platform i {
    font-size: 3rem;
    color: #00C8B4;
    margin-bottom: 10px;
}

.current-platform h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.current-platform p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background-color: #00C8B4;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin: 10px 0 30px;
}

.download-button:hover {
    background-color: #00A394;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.platform-roadmap {
    border-top: 1px solid rgba(0, 200, 180, 0.2);
    padding-top: 25px;
    width: 100%;
    max-width: 500px;
}

.platform-roadmap h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #00C8B4;
}

.roadmap-items {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.roadmap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap-item i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.roadmap-item span {
    color: rgba(255, 255, 255, 0.6);
}

.roadmap-item.future i,
.roadmap-item.future span {
    color: rgba(255, 255, 255, 0.4);
}

/* Android icon styling */
.roadmap-item:first-child i {
    color: #3DDC84;
}

/* iOS icon styling - muted to indicate it's further in the future */
.roadmap-item.future i {
    color: rgba(170, 170, 170, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        width: calc(50% - 10px);
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text-wrapper {
        text-align: center;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .donation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap-items {
        gap: 20px;
    }
    
    .api-providers {
        flex-direction: column;
        align-items: center;
    }
    
    .api-badge {
        width: 80%;
        text-align: center;
    }
    
    .coming-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    .developer-banner {
        padding: 15px;
    }
    
    .developer-content p {
        font-size: 0.95rem;
    }
    
    .about-section,
    .coming-soon-section {
        padding: 20px;
    }
}