/*
Theme Name: Kickoff 2026
Theme URI: https://zota.com
Author: Zota
Author URI: https://zota.com
Description: Custom theme for Kickoff 2026 - Celebrating a Decade event registration
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kickoff-2026
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Front Page - Event Selection */
.front-page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #c9a87a 0%, #d4b896 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.front-page-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q 25 0, 50 10 T 100 10 L 100 20 L 0 20 Z" fill="%23b89968"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.front-page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.front-page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #5a3e2b;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.front-page-header .subtitle {
    font-size: 1.8rem;
    font-style: italic;
    color: #6d4c38;
    margin-bottom: 30px;
}

.front-page-header h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.front-page-header p {
    font-size: 1.2rem;
    color: #fff;
}

.events-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.event-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.event-card h3 {
    font-size: 1.6rem;
    color: #5a7590;
    margin-bottom: 15px;
    font-weight: bold;
}

.event-card .icon {
    font-size: 4rem;
    margin: 20px 0;
}

.event-card .timing {
    font-size: 0.95rem;
    color: #5a7590;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Yoga Registration Page */
.yoga-registration-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #c9a87a 0%, #d4b896 100%);
    padding: 40px 20px;
    position: relative;
}

.yoga-registration-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(139, 107, 76, 0.3), transparent);
}

.yoga-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.yoga-header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5a3e2b;
}

.yoga-header h1 {
    font-size: 1.3rem;
    color: #5a3e2b;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.yoga-header h2 {
    font-size: 1.8rem;
    color: #fff;
    background: #5a3e2b;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}

.yoga-header .yoga-icon {
    font-size: 3.5rem;
    margin: 15px 0;
}

.yoga-header p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Multi-step Form */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1rem;
    color: #5a3e2b;
    margin-bottom: 20px;
    font-weight: 600;
}


/* Date and Time Selection */
.date-group {
    margin-bottom: 25px;
}

.date-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #5a7590;
    margin-bottom: 12px;
    display: block;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slot {
    display: inline-flex;
    align-items: center;

}


.time-slot input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #6ba54a;
}

.time-slot label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
/*    flex: 1;*/
}

/*
.time-slot.selected {
    background: #d4edda;
    border: 2px solid #6ba54a;
}
*/



/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6ba54a;
}

.form-group input.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Buttons */
.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-next,
.btn-register {
    background: #6ba54a;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-next:hover,
.btn-register:hover {
    background: #5a8e3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 165, 74, 0.3);
}

.btn-back {
    background: transparent;
    color: #666;
    padding: 12px 20px;
}

.btn-back:hover {
    color: #333;
}

/* Success Message */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.success-screen h3 {
    font-size: 1.6rem;
    color: #6ba54a;
    font-weight: bold;
    margin-bottom: 10px;
}

.success-screen p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.activity-prompt {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity-prompt .bell-icon {
    font-size: 2.5rem;
}

.activity-prompt-content {
    flex: 1;
    text-align: left;
}

.activity-prompt h4 {
    font-size: 1rem;
    color: #5a7590;
    font-weight: bold;
    margin-bottom: 10px;
}

.activity-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.activity-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: #5a7590;
    color: #fff;
}

.activity-buttons .btn:hover {
    background: #4a6580;
}

/* Logo */
.zota-logo {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.zota-logo h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 3px;
    font-weight: bold;
}

/* Camel Background Image */
.camel-background {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.4;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .front-page-header h1 {
        font-size: 2.5rem;
    }
    
    .front-page-header .subtitle {
        font-size: 1.4rem;
    }
    
    .front-page-header h2 {
        font-size: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .yoga-form-wrapper {
        padding: 30px 20px;
    }
}

/* Saturday Activities List Page */
.saturday-activities-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #c9a87a 0%, #d4b896 100%);
    padding: 20px;
    position: relative;
}

.saturday-activities-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(139, 107, 76, 0.3), transparent);
}

.saturday-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.saturday-header .menu-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5a3e2b;
}

.saturday-header h1 {
    font-size: 1.3rem;
    color: #5a3e2b;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.saturday-header .calendar-icon {
    font-size: 4rem;
    position: relative;
    display: inline-block;
}

.saturday-header .calendar {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.saturday-header .calendar-day {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.activities-title {
    text-align: center;
    margin-bottom: 30px;
}

.activities-title h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
}

.activities-list {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.activity-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.activity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.activity-content {
    flex: 1;
}

.activity-content h3 {
    font-size: 1.2rem;
    color: #5a7590;
    margin-bottom: 5px;
    font-weight: bold;
}

.activity-content .activity-location {
    font-size: 0.85rem;
    color: #666;
    margin: 5px 0;
}

.activity-content .activity-duration {
    font-size: 0.85rem;
    color: #5a7590;
    font-weight: 600;
    text-transform: uppercase;
}

.activity-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity-icon .icon {
    font-size: 3rem;
}

.activity-icon .arrow {
    font-size: 1.5rem;
    color: #999;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Activity Detail Page */
.activity-detail-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #c9a87a 0%, #d4b896 100%);
    padding: 20px;
    position: relative;
}

.activity-detail-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(139, 107, 76, 0.3), transparent);
}

.activity-detail-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.activity-header {
    text-align: center;
    margin-bottom: 30px;
}

.activity-header h1 {
    font-size: 1.3rem;
    color: #5a3e2b;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.activity-header h2 {
    font-size: 1.5rem;
    color: #5a7590;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

.activity-hero-icon {
    font-size: 4rem;
    margin: 15px 0;
}

.activity-hero-icon .activity-icon-image {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    display: inline-block;
}

/* Activity Steps */
.activity-step {
    display: none;
}

.activity-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.activity-info-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.activity-info-box h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.activity-info-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.activity-info-box p:last-child {
    margin-bottom: 0;
}

.activity-time-slots h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.activity-time-slots h3:not(:first-child) {
    margin-top: 15px;
}

.activity-duration-info {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.activity-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn-back-activity {
    background: transparent;
    color: #666;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-back-activity:hover {
    color: #333;
}



/* Responsive - Activities */
@media (max-width: 768px) {
    .activities-list {
        max-width: 100%;
    }
    
    .activity-icon .icon {
        font-size: 2.5rem;
    }
    
    .activity-detail-wrapper {
        padding: 30px 20px;
    }
    
    .activity-content h3 {
        font-size: 1rem;
    }
}









.form-group input.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}
