/* AI Coaching Website Styles */
/* Mobile-first approach */

:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #121212;
    --text-light: #e8e8e8;
    --text-muted: #b0b0b0;
    --accent: #5fa8d4;
    --accent-border: #4a9bc7;
    --glow-color: rgba(95, 168, 212, 0.15);
}

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

html {
    font-size: 18px;
}

body {
    font-family: 'Rajdhani', 'Trebuchet MS', Helvetica, Arial, sans-serif;
    background-color: var(--bg-darker);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%231a3a4a' stroke-width='0.5'%3E%3Cpath d='M10 10h20v0M30 10v20M30 30h20M50 30v-20M50 10h10'/%3E%3Cpath d='M70 10v30h20M90 40v10'/%3E%3Cpath d='M10 50h30M40 50v20M40 70h-20M20 70v20'/%3E%3Cpath d='M60 50h10v20h20M90 70v20'/%3E%3Cpath d='M60 80h10v10'/%3E%3Ccircle cx='30' cy='10' r='2'/%3E%3Ccircle cx='50' cy='30' r='2'/%3E%3Ccircle cx='90' cy='40' r='2'/%3E%3Ccircle cx='40' cy='70' r='2'/%3E%3Ccircle cx='20' cy='90' r='2'/%3E%3Ccircle cx='70' cy='80' r='2'/%3E%3Ccircle cx='90' cy='90' r='2'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0.5rem;
}

/* Header split layout */
.header-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.header-text {
    text-align: center;
}

/* Main heading */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(95, 168, 212, 0.5), 0 0 40px rgba(95, 168, 212, 0.3);
}

/* Section headings */
h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(95, 168, 212, 0.4);
}

h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.tagline strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Section cards */
.section {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--accent-border);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* Learning path levels */
.level {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(95, 168, 212, 0.2);
}

.level:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Pricing section */
.pricing {
    text-align: center;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(95, 168, 212, 0.5);
    margin-bottom: 0.5rem;
}

.price-description {
    color: var(--text-muted);
}

/* About section */
.about-highlight {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.coach-name {
    color: var(--accent);
    font-weight: 600;
}

/* Profile image in header */
.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    border: 2px solid var(--accent-border);
    flex-shrink: 0;
    object-fit: cover;
    object-position: top;
    background-color: var(--bg-darker);
}

/* Contact section */
.contact-info {
    text-align: center;
}

.contact-item {
    margin-bottom: 0.5rem;
}

.contact-label {
    font-weight: 600;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-value:hover {
    text-decoration: underline;
}

/* Horizontal rule styling */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
    margin: 0.5rem 0;
}

/* Desktop styles */
@media (min-width: 768px) {
    html {
        font-size: 20px;
    }

    .container {
        padding: 1rem;
    }

    .header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-text {
        flex: 1;
        text-align: left;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .section {
        padding: 1rem;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .price {
        font-size: 3rem;
    }
}

/* Large desktop */
@media (min-width: 1024px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 1.25rem;
    }

    .profile-image {
        width: 260px;
        height: 260px;
    }
}

/* Scroll glow animation */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
}

.glow-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation: float1 8s ease-in-out infinite;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4a9bc7 0%, transparent 70%);
    top: 40%;
    right: -5%;
    animation: float2 10s ease-in-out infinite;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #7ab8e0 0%, transparent 70%);
    bottom: 5%;
    left: 20%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(30px, 20px); opacity: 0.75; }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.55; }
    50% { transform: translate(-25px, 30px); opacity: 0.8; }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(20px, -25px); opacity: 0.7; }
}
