:root {
    --pink: #FB32BC;
    --purple: #C039F8;
    --lime: #A4FF00;
    --bg: #0D0D0D;
    --text: #FFFFFFDE;
    --glass: rgba(255,255,255,.06);
    --radius: 24px;
    --easing: cubic-bezier(.25,.8,.25,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Space Grotesk", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('Raphael_School_of_Athens.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    opacity: 0.6;
    z-index: 2;
}

.site-logo {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    opacity: 0.8;
}

.site-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 0 2rem;
}

.hero-image-space {
    width: 100%;
    height: 120px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space reserved for background image */
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid var(--glass);
}

.hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--lime);
    color: var(--bg);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--easing);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(164, 255, 0, 0.3);
}

/* Content Block */
.content-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.content-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s var(--easing);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Prep List */
.prep-list {
    max-width: 700px;
    margin: 0 auto;
}

.prep-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.prep-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.prep-item h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.prep-item p {
    opacity: 0.9;
}

.pro-tip {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Chat Tips */
.chat-tips {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.chat-tip {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.important-note {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2rem;
}

.important-note p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* After List */
.after-list {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.after-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

/* Final Message */
.final-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--lime);
}

.final-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Calendly */
.calendly-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendly-inline-widget {
    border-radius: var(--radius);
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s var(--easing);
}

.footer-link:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Content is always visible - no reveal animations */
.reveal {
    opacity: 1;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prep-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass: rgba(255, 255, 255, 0.15);
    }
    
    .tech-card,
    .prep-item,
    .chat-tip,
    .after-item,
    .final-card {
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}
