/*
Theme Name: Aisay Beta
Theme URI: https://aisay.co
Author: Aisay Team
Author URI: https://aisay.co
Description: Landing page for Aisay Beta testing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aisay-beta
*/

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style dla landing page */
.hero-section {
    background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Style dla formularza */
.registration-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: -50px auto 50px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6B73FF;
    box-shadow: 0 0 0 3px rgba(107, 115, 255, 0.2);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.terms-checkbox input {
    margin-right: 10px;
    width: auto;
}

.submit-btn {
    background: #6B73FF;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: #000DFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 13, 255, 0.3);
}

/* Strona podziękowania */
.thank-you-section {
    text-align: center;
    padding: 120px 0;
}

.thank-you-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #6B73FF;
}

.thank-you-section p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

/* Style dla tabeli w panelu administracyjnym */
.beta-users-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.beta-users-table th,
.beta-users-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.beta-users-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.beta-users-table tr:last-child td {
    border-bottom: none;
}

.beta-users-table tr:hover {
    background: #f8f9fa;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.accepted {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

/* Dostosowanie kolorów Bootstrap */
.btn-primary {
    background-color: #6B73FF;
    border-color: #6B73FF;
}

.btn-primary:hover {
    background-color: #000DFF;
    border-color: #000DFF;
}

.text-primary {
    color: #6B73FF !important;
}

.btn-outline-primary {
    color: #6B73FF;
    border-color: #6B73FF;
}

.btn-outline-primary:hover {
    background-color: #6B73FF;
    border-color: #6B73FF;
}

/* Style dla logo */
.logo {
    text-decoration: none;
    color: black;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6B73FF;
}

/* Responsywność */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .registration-form {
        margin: -30px auto 30px;
        padding: 30px;
    }
    
    .beta-users-table {
        display: block;
        overflow-x: auto;
    }
} 