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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Layout */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container {
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 6rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-image {
    margin-bottom: 1rem;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7c3aed;
    transition: transform 0.2s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.name-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #888;
    margin: 0;
}

.tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0.5rem 1rem;
    border: 2px solid #7c3aed;
    border-radius: 4px;
    display: inline-block;
    background: rgba(124, 58, 237, 0.05);
}

/* Services Section */
.services {
    margin-bottom: 6rem;
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 2rem;
    position: relative;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-item h3 a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.service-item h3 a:hover {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.service-item p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Coming Soon Styling */
.service-item.coming-soon {
    opacity: 0.6;
    filter: grayscale(30%);
}

.service-item.coming-soon h3 {
    color: #888;
}

.service-item.coming-soon p {
    color: #999;
}

.coming-soon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* Contact Section */
.contact {
    text-align: center;
    margin-bottom: 4rem;
}

.contact h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: #7c3aed;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
    padding-bottom: 2px;
}

.email-link:hover {
    border-bottom-color: #7c3aed;
}

/* Social Links */
.social {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.social-links a:hover {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        margin-bottom: 4rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .name-container {
        gap: 0.75rem;
    }
    
    .live-indicator {
        padding: 0.375rem 0.75rem;
    }
    
    .live-text {
        font-size: 0.75rem;
    }
    
    .title {
        font-size: 1.125rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .services {
        margin-bottom: 4rem;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .service-item {
        padding-bottom: 1.5rem;
    }
    
    .service-item h3 {
        font-size: 1.25rem;
    }
    
    .service-item p {
        font-size: 1rem;
    }
    
    .contact {
        margin-bottom: 3rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 1rem;
    }
    
    .hero {
        margin-bottom: 3rem;
    }
    
    .name {
        font-size: 1.75rem;
    }
    
    .name-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-item {
        padding-bottom: 1rem;
    }
    
    .coming-soon-badge {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.services,
.contact,
.social {
    animation: fadeIn 0.8s ease forwards;
}

.services {
    animation-delay: 0.2s;
}

.contact {
    animation-delay: 0.4s;
}

.social {
    animation-delay: 0.6s;
}

/* Focus states for accessibility */
.email-link:focus,
.social-links a:focus,
.service-item h3 a:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .main-content {
        padding: 2rem 1rem;
    }
    
    .hero,
    .services,
    .contact,
    .social {
        page-break-inside: avoid;
    }
    
    .live-indicator {
        display: none;
    }
} 