/* Jupiter July 2025 - AI Education Page Styles */

/* Day Navigation Styles */
.day-navigation {
    padding: 20px 0;
    margin: 30px 0;
}

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

.day-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.day-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--raivon-blue);
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid rgba(41, 128, 185, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.day-btn:hover {
    background-color: rgba(41, 128, 185, 0.05);
    border-color: rgba(41, 128, 185, 0.4);
    color: var(--raivon-blue);
    text-decoration: none;
    transform: translateY(-2px);
}

.day-btn.active {
    background-color: var(--raivon-blue);
    color: white;
    border-color: var(--raivon-blue);
    font-weight: 600;
}

.day-btn.active:hover {
    background-color: #1a4fa0;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .day-navigation {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .day-buttons {
        gap: 10px;
    }
    
    .day-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

.hero-title {
    margin-bottom: 30px;
    color: var(--raivon-blue);
}

.hero-subtitle {
    color: var(--raivon-blue);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background-color: transparent;
    color: #FF6B00;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #FF6B00;
    display: inline-block;
}

.hero-cta:hover {
    background-color: rgba(255, 107, 0, 0.08);
    color: #FF6B00;
    border-color: #FF6B00;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.12);
    transform: translateY(-2px);
}

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

.section-title {
    color: var(--raivon-blue);
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    color: var(--raivon-blue);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.content-section {
    padding: 60px 50px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 30, 148, 0.05);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-text p {
    margin-bottom: 25px;
}

.highlight-box {
    background-color: rgba(0, 30, 148, 0.05);
    border-left: 4px solid var(--raivon-blue);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box h4 {
    color: var(--raivon-blue);
    margin-bottom: 15px;
}

.example-bad {
    background-color: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff4444;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.example-good {
    background-color: rgba(0, 150, 0, 0.05);
    border-left: 4px solid #22c55e;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.example-bad h5 {
    color: #ff4444;
    margin-bottom: 10px;
}

.example-good h5 {
    color: #22c55e;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 56, 255, 0.08);
    border: 1px solid rgba(0, 30, 148, 0.08);
}

.feature-card h4 {
    color: var(--raivon-blue);
    margin-bottom: 15px;
}

.technique-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 30, 148, 0.1);
}

.technique-item:last-child {
    border-bottom: none;
}

.technique-title {
    color: var(--raivon-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.warning-box {
    background-color: rgba(255, 107, 0, 0.08);
    border: 2px solid var(--raivon-orange);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.warning-box h4 {
    color: var(--raivon-orange);
    margin-bottom: 15px;
}

.image-placeholder {
    background-color: #f8f9ff;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border-radius: 8px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.table-of-contents {
    background: #f8f9ff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.table-of-contents h3 {
    color: var(--raivon-blue);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.table-of-contents ul {
    list-style: none;
    padding: 0 0 0 20px;
}

.table-of-contents li {
    margin-bottom: 12px;
    padding: 8px 0;
    line-height: 1.6;
}

.table-of-contents li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.table-of-contents li a:hover {
    color: var(--raivon-blue);
}


.table-of-contents a {
    color: var(--raivon-blue);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.table-of-contents a:hover {
    color: var(--raivon-orange);
    border-bottom-color: var(--raivon-orange);
}

@media (max-width: 768px) {
    .content-section {
        padding: 50px 20px;
    }

    .content-text {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .table-of-contents {
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

.example-good ol {
    padding-left: 20px;
}

/* Google Slides and Contact Section Styles */
.slides-container {
    text-align: center;
    margin: 40px 0;
}

.slides-title {
    color: var(--raivon-blue);
    margin-bottom: 20px;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.slides-iframe {
    width: 100%;
    height: 569px;
    border: none;
}

.slides-link {
    color: #666;
    margin-top: 15px;
    font-size: 0.9rem;
}

.slides-link a {
    color: var(--raivon-blue);
    text-decoration: none;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9ff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-content {
    text-align: center;
    padding: 40px;
    color: #333;
}

.video-placeholder-content h4 {
    color: var(--raivon-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.video-placeholder-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.video-placeholder-content em {
    color: #666;
    font-style: italic;
}

.youtube-icon {
    font-size: 3rem;
    color: #FF0000;
    margin-bottom: 20px;
    display: block;
}

.contact-section {
    text-align: center;
    padding: 60px 50px;
    background-color: #f8f9ff;
}

.contact-title {
    color: var(--raivon-blue);
    margin-bottom: 20px;
}

.contact-description {
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Image positioning classes */
.image-center {
    text-align: center;
    margin: 30px 0;
}

.image-center-small {
    text-align: center;
    margin: 20px 0;
}

.image-center-cards {
    text-align: center;
    margin: 15px 0;
}

.image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-responsive-60 {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
}

.image-responsive-80 {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

.image-responsive-cards {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.hero-text-content {
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--raivon-blue);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.3;
}

.hero-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-author-info {
    text-align: left;
}

.hero-author-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--raivon-blue);
    margin-bottom: 5px;
}

.hero-author-link {
    font-size: 1.2rem;
    color: #00bcd4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text-content {
        padding: 60px 20px;
    }
    
    .hero-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-author-info {
        text-align: center;
    }
}

/* Agent Options - Vertical Layout */
.agent-options {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.agent-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 56, 255, 0.08);
    border: 1px solid rgba(0, 30, 148, 0.08);
}

.agent-option h4 {
    color: var(--raivon-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.agent-option p {
    margin-bottom: 15px;
}

.agent-option .image-placeholder {
    margin-top: 25px;
}

.setup-steps {
    margin: 20px 0;
    padding-left: 20px;
}

.setup-steps li {
    margin-bottom: 20px;
    line-height: 1.6;
}

.setup-steps ul {
    margin: 10px 0 15px 20px;
}

.setup-steps ul li {
    margin-bottom: 8px;
}

.setup-steps code {
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.agent-option h5 {
    color: var(--raivon-blue);
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
}

.prominent-link {
    display: inline-block;
    background-color: var(--raivon-blue);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin: 5px 0;
    transition: all 0.2s ease;
}

.prominent-link:hover {
    background-color: #0056b3;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Usage Steps */
.usage-steps {
    margin-top: 40px;
}

.usage-step {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid var(--raivon-blue);
}

.usage-step h4 {
    color: var(--raivon-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.usage-step ul {
    margin: 15px 0;
    padding-left: 20px;
}

.usage-step ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.usage-step .image-placeholder {
    margin-top: 20px;
}

.demo-gallery {
    margin-top: 25px;
}

.demo-gallery .image-center {
    margin-bottom: 20px;
}

.demo-gallery .image-center:last-child {
    margin-bottom: 0;
}

.mcp-demo-spacing {
    margin-top: 40px;
}

/* Beautiful Option Buttons */
.option-selector {
    margin: 40px 0 50px 0;
    text-align: center;
}

.option-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.option-btn {
    padding: 25px 45px;
    background: white;
    border: 3px solid var(--raivon-blue);
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--raivon-blue);
    min-width: 320px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 30, 148, 0.1);
}

.option-btn.active {
    background: var(--raivon-blue);
    color: white;
    border-color: var(--raivon-blue);
    box-shadow: 0 6px 16px rgba(0, 30, 148, 0.2);
}

.option-btn.grayed {
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .option-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .option-btn {
        min-width: 280px;
        max-width: 100%;
        padding: 20px 35px;
        font-size: 1.2rem;
    }
}

/* Dynamic content visibility */
.agent-options {
    display: none;
}

.agent-options.visible {
    display: flex;
}

.usage-section {
    display: none;
}

.usage-section.visible {
    display: block;
}

.agent-option {
    display: none;
}

.agent-option.visible {
    display: block;
}

/* Clarification buttons */
.clarification-cta {
    display: block;
    margin: 35px 0;
    text-align: center;
    width: 100%;
}

.clarification-btn {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-transform: none;
    letter-spacing: 0.3px;
}

.clarification-btn:hover {
    background: #f8f9ff;
    color: var(--raivon-blue);
    border-color: var(--raivon-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 30, 148, 0.15);
}

