/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    font-weight: 400;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 24px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease-out;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.hero-title {
    font-size: clamp(48px, 8vw, 76px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 21px;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    background-color: #1a1a1a;
    color: #fff;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.15);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    background-color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.25);
}

/* Resources Section */
.resources {
    padding: 100px 0;
    background: #ffffff;
}

.resources h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 72px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.venture-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    height: 100%;
}

.venture-card:hover {
    border-color: #000;
}

.venture-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.venture-card p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
    flex-grow: 1;
}

.venture-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: none;
    cursor: pointer;
}

.venture-link:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.coming-soon {
    display: inline-block;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #f9fafb;
    cursor: default;
}

.coming-soon:hover {
    color: #9ca3af;
    background-color: #f9fafb;
    border-color: #e5e5e5;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: #ffffff;
}

.blog h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 72px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post:hover {
    border-color: #000;
}

.blog-post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
    min-height: 3em;
}

.blog-post p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-post-footer {
    margin-top: auto;
    padding-top: 8px;
}

.blog-post-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.read-more-btn {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fafafa;
}

.about h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    order: 0;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

footer p {
    color: #666;
    margin: 0;
}

/* Blog Page Styles */
.blog-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.blog-meta {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #000;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #000;
}

.blog-content strong {
    font-weight: 600;
    color: #000;
}

.blog-content em {
    font-style: italic;
}

.blog-content a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.blog-content a:hover {
    opacity: 0.7;
}

.blog-content ul, .blog-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content blockquote {
    border-left: 3px solid #000;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #555;
}

.back-to-home {
    display: inline-block;
    margin-bottom: 40px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid #000;
    transition: opacity 0.3s ease;
}

.back-to-home:hover {
    opacity: 0.7;
}

.newsletter-cta {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
}

.newsletter-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.newsletter-cta p {
    color: #666;
    margin-bottom: 24px;
}

.newsletter-cta a {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.newsletter-cta a:hover {
    background-color: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.close {
    color: #999;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
    padding: 10px;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal iframe {
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
    }
    
    .about h2 {
        text-align: center;
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .blog-title {
        font-size: 32px;
    }
    
    .blog-content {
        font-size: 16px;
    }
    
    .blog-content h2 {
        font-size: 26px;
    }
    
    .blog-content h3 {
        font-size: 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .social-link {
        padding: 6px 12px;
        font-size: 14px;
    }
}