/*
Theme Name: Minimal Portfolio
Description: Clean white design with strategic orange accents - professional and modern
Version: 2.1
Author: Lucas Deichl
*/

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

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
    scroll-behavior: smooth;
}

/* Hero Section - Full viewport with proper centering */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 6rem 1rem;
    padding-top: calc(50vh - 300px);
}

/* Subtle background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(232, 116, 74, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(232, 116, 74, 0.02) 0%, transparent 50%);
    z-index: 1;
}

/* Main content container */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Name styling */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

/* Orange line under name - properly centered */
.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e8744a, #d4652f);
    border-radius: 2px;
}

/* Subtitle */
.hero-content .subtitle {
    font-size: 1.6rem;
    color: #64748b;
    font-weight: 400;
    margin: 2rem 0 1.5rem 0;
    letter-spacing: 0.3px;
}

/* Description */
.hero-content .description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BuddyBar Feature Card */
.buddybar-feature {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.8rem;
    margin: 2rem auto 2.5rem auto;
    max-width: 480px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.buddybar-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(232, 116, 74, 0.2);
}

/* Orange accent line on card */
.buddybar-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8744a, #d4652f);
    border-radius: 16px 16px 0 0;
}

.buddybar-feature h3 {
    font-size: 1.15rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.buddybar-feature p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 160px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Primary button (Try BuddyBar) */
.cta-button.primary {
    background: linear-gradient(135deg, #e8744a, #d4652f);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 116, 74, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 116, 74, 0.4);
}

/* Secondary button (View My Work) */
.cta-button.secondary {
    background: #ffffff;
    color: #e8744a;
    border: 2px solid #e8744a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.cta-button.secondary:hover {
    background: #e8744a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 116, 74, 0.3);
}

/* Scroll Indicator - Fixed to viewport, not content */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 1;
}

.scroll-indicator.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-3px);
}

.scroll-indicator.hidden:hover {
    transform: translateX(-50%) translateY(20px);
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

.scroll-indicator:hover span {
    color: #e8744a;
}

/* Scroll Arrow */
.scroll-arrow {
    width: 32px;
    height: 32px;
    border: 2px solid #e8744a;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: rgba(232, 116, 74, 0.05);
    animation: bounce 2.5s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(232, 116, 74, 0.1);
    border-color: #d4652f;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid #e8744a;
    border-bottom: 2px solid #e8744a;
}

/* Contact Section */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact {
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #e8744a;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: #e8744a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #d4652f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 116, 74, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8744a, #d4652f, #e8744a);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content .description {
        font-size: 1rem;
    }
    
    .buddybar-feature {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem auto;
    }
    
    .buddybar-feature h3 {
        font-size: 1.05rem;
    }
    
    .buddybar-feature p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .cta-button {
        min-width: 200px;
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        width: 28px;
        height: 28px;
    }
    
    .scroll-arrow::after {
        top: 7px;
        width: 5px;
        height: 5px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content .description {
        font-size: 0.95rem;
    }
    
    .buddybar-feature {
        padding: 1.2rem;
    }
    
    .cta-button {
        min-width: 180px;
        padding: 0.8rem 1.5rem;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        width: 26px;
        height: 26px;
    }
}