/* Beamer Brand Colors */
:root {
    --primary: #E42728;      /* Ember Bright */
    --primary-light: #EA5455; /* Lighter shade */
    --secondary: #7232A4;    /* Vivid Resolve Violet */
    --accent: #2CC48B;       /* Ascent Success Green */
    
    --neutral-50: #F5F7FA;   /* Arctic 50 */
    --neutral-100: #E8EDF5;  /* Arctic 100 */
    --neutral-200: #D6DEE8;  /* Arctic 200 */
    --neutral-700: #1C2237;  /* Midnight 700 */
    --neutral-900: #0E111A;  /* Midnight 900 */
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    --radius: 8px;
    --shadow: 0 4px 12px rgba(28, 34, 55, 0.08);
    --shadow-lg: 0 8px 24px rgba(28, 34, 55, 0.12);
    --transition: all 0.2s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-900);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

/* Header */
.header {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--neutral-50) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--neutral-100);
}

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

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

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

.profile-name {
    font-size: 2.5rem;
    color: var(--neutral-900);
}

.profile-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.tagline {
    font-size: 1.25rem;
    color: var(--neutral-700);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-700);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: var(--neutral-50);
    border-radius: 50px;
}

.location svg {
    color: var(--primary);
}

/* Sections */
.section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--neutral-100);
}

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

.section-title {
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* About */
.about-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
}

/* Philosophy */
.philosophy-description {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: 2rem;
    max-width: 800px;
}

.principles {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
}

.principles h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.principles ul {
    list-style-position: inside;
    margin-left: 0.5rem;
}

.principles li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-50);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--neutral-900);
    flex-shrink: 0;
}

.social-card.linkedin .social-icon {
    background: #0077B5;
    color: white;
}

.social-card.twitter .social-icon {
    background: #000000;
    color: white;
}

.social-card.youtube .social-icon {
    background: #FF0000;
    color: white;
}

.social-card.indiehackers .social-icon {
    background: #0E0E0E;
    color: #FF7438;
}

.social-card.beamer .social-icon {
    background: var(--neutral-50);
    color: var(--primary);
}

.social-card.beamer .social-icon img {
    width: 24px;
    height: 24px;
}

.social-info h3 {
    margin-bottom: 0.25rem;
    color: var(--neutral-900);
}

.social-info p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--neutral-700);
}

.social-note {
    font-size: 0.9375rem;
    color: var(--neutral-700);
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.5rem;
    background: var(--neutral-50);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--neutral-900);
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    color: var(--neutral-700);
}

/* Contact Form */
.contact-intro {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: white;
    color: var(--neutral-900);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(228, 39, 40, 0.1);
}

.cf-turnstile {
    margin: 2rem 0;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    min-width: 180px;
}

.submit-button:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

.button-spinner.hidden {
    display: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.form-message.success {
    background: rgba(44, 196, 139, 0.1);
    color: #0c6b4c;
    border: 1px solid var(--accent);
}

.form-message.error {
    background: rgba(228, 39, 40, 0.1);
    color: #b91c1c;
    border: 1px solid var(--primary);
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 3rem 0;
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-100);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neutral-900);
}

.footer-tagline {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

.footer-links a {
    margin: 0 0.5rem;
    font-size: 0.9375rem;
}

/* Tablet */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 3rem;
    }
    
    .profile-text {
        text-align: left;
    }
    
    .tagline {
        margin-left: 0;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .profile-image img {
        width: 250px;
        height: 250px;
    }
}

/* Print */
@media print {
    .header {
        padding: 1rem 0;
    }
    
    .section {
        padding: 1.5rem 0;
        border: none;
    }
    
    .contact-form,
    .cf-turnstile,
    .footer-links {
        display: none;
    }
}