/* SuperHospitality - Clean VC Portfolio Page */

:root {
    --bg: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --accent: #10B981;
    --card-bg: #F9FAFB;
    --card-border: #E5E7EB;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
}

/* Header */
.header {
    margin-bottom: 3rem;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.title-bold {
    color: var(--text-primary);
}

.title-light {
    color: var(--accent);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.badge-icon {
    width: 20px;
    height: 20px;
}

/* Content Grid */
.content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Video Card */
.video-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000;
    margin-bottom: 1rem;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    z-index: 2;
}

.play-button svg {
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
}

.play-button .play-bg {
    transition: fill 0.2s ease;
}

.video-link:hover .play-button .play-bg {
    fill: #cc0000;
}

.video-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #FF0000;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.video-link:hover .video-cta {
    background: #cc0000;
    transform: translateY(-2px);
}

.video-link:hover .video-cta svg {
    transform: translate(2px, -2px);
}

/* Pitch Deck Card */
.pitch-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.pitch-preview {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #FFFFFF 0%, #F3F4F6 100%);
    border: 1px solid var(--card-border);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.pitch-link:hover .pitch-preview {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Document Preview Mockup */
.doc-preview {
    width: 85%;
    height: 85%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.doc-header {
    padding: 0.75rem;
    border-bottom: 1px solid #E5E7EB;
}

.doc-title-bar {
    height: 10px;
    width: 60%;
    background: linear-gradient(90deg, var(--accent), #34D399);
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.doc-subtitle-bar {
    height: 6px;
    width: 40%;
    background: #E5E7EB;
    border-radius: 2px;
}

.doc-content {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    gap: 0.75rem;
}

.doc-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.375rem;
    min-width: 60px;
}

.slide-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.slide-icon svg {
    width: 100%;
    height: 100%;
}

.doc-slide span {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.doc-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    justify-content: center;
}

.doc-line {
    height: 6px;
    background: #E5E7EB;
    border-radius: 2px;
    width: 100%;
}

.doc-line.short {
    width: 50%;
}

.doc-line.medium {
    width: 75%;
}

.doc-footer {
    padding: 0.5rem 0.75rem;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.doc-label {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pitch-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pitch-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.pitch-link:hover .pitch-button {
    background: #059669;
    transform: translateY(-2px);
}

.pitch-link:hover .pitch-button svg {
    transform: translate(2px, -2px);
}

/* Google Slides Preview */
.slides-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slides-logo {
    width: 20px;
    height: 20px;
}

.slides-logo svg {
    width: 100%;
    height: 100%;
}

.slides-header span {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Explorer Button */
.explorer-btn {
    background: #6366F1;
}

.pitch-link:hover .explorer-btn {
    background: #4F46E5;
}

/* Founders Section */
.founders {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.founders-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.founder-link:hover {
    border-color: #0A66C2;
    background: rgba(10, 102, 194, 0.05);
    transform: translateY(-2px);
}

.linkedin-icon {
    width: 18px;
    height: 18px;
    color: #0A66C2;
}

/* Responsive */
@media (max-width: 1024px) {
    .content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .header {
        margin-bottom: 2rem;
    }

    .doc-preview {
        width: 90%;
        height: 90%;
    }

    .doc-slide {
        min-width: 50px;
        padding: 0.375rem;
    }

    .slide-icon {
        width: 20px;
        height: 20px;
    }

    .founders {
        padding-bottom: 4rem;
    }
}