/* =========================================================
   VENTURES PAGE - EXACT DESIGN REPLICA
   ========================================================= */

/* Main Ventures Section */
.ventures-main {
    background: #002B49;
    color: white;
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.ventures-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section */
.ventures-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 1s ease-out 0.3s forwards;
}

.ventures-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin: 0;
    max-width: 600px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1.2s ease-out 0.6s forwards;
}

.ventures-description {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1.2s ease-out 0.9s forwards;
}

.ventures-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.ventures-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1s ease-out 1.2s forwards;
}

.ventures-cta:hover {
    transform: translateX(4px);
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.ventures-cta:hover .cta-icon {
    background: #888888;
}

.cta-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Ventures Grid */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

/* Venture Cards */
.venture-card {
    background: #002B49;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardSlideIn 0.8s ease-out forwards;
}

/* Staggered Animation Delays for Cards */
.venture-card:nth-child(1) { animation-delay: 1.5s; }
.venture-card:nth-child(2) { animation-delay: 1.7s; }
.venture-card:nth-child(3) { animation-delay: 1.9s; }
.venture-card:nth-child(4) { animation-delay: 2.1s; }
.venture-card:nth-child(5) { animation-delay: 2.3s; }
.venture-card:nth-child(6) { animation-delay: 2.5s; }
.venture-card:nth-child(7) { animation-delay: 2.7s; }
.venture-card:nth-child(8) { animation-delay: 2.9s; }
.venture-card:nth-child(9) { animation-delay: 3.1s; }
.venture-card:nth-child(10) { animation-delay: 3.3s; }
.venture-card:nth-child(11) { animation-delay: 3.5s; }
.venture-card:nth-child(12) { animation-delay: 3.7s; }
.venture-card:nth-child(13) { animation-delay: 3.9s; }
.venture-card:nth-child(14) { animation-delay: 4.1s; }
.venture-card:nth-child(15) { animation-delay: 4.3s; }
.venture-card:nth-child(16) { animation-delay: 4.5s; }
.venture-card:nth-child(17) { animation-delay: 4.7s; }
.venture-card:nth-child(18) { animation-delay: 4.9s; }

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.venture-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.venture-card:hover::before {
    opacity: 1;
}

/* Venture Images */
.venture-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venture-card:hover .card-image {
    transform: scale(1.05);
}

/* Venture Content */
.venture-content {
    padding: 40px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.venture-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.venture-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

/* Action Buttons */
.venture-action-btn {
    background: none;
    border: none;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    transition: all 0.3s ease;
    align-self: flex-start;
    pointer-events: none;
}

.venture-action-btn:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

.venture-action-btn:hover .btn-icon {
    background: #888888;
    transform: translateX(2px);
}

.btn-text {
    color: inherit;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ventures-container {
        padding: 0 30px;
    }
    
    .ventures-header {
        gap: 60px;
    }
    
    .ventures-title {
        font-size: 3.5rem;
    }
    
    .ventures-grid {
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .ventures-main {
        padding: 100px 0 60px;
    }
    
    .ventures-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .ventures-title {
        font-size: 3rem;
        max-width: none;
    }
    
    .ventures-description {
        max-width: none;
    }
    
    .ventures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ventures-container {
        padding: 0 20px;
    }
    
    .ventures-title {
        font-size: 2.5rem;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .venture-image {
        height: 240px;
    }
    
    .venture-content {
        padding: 32px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .ventures-title {
        font-size: 2rem;
    }
    
    .ventures-header {
        margin-bottom: 60px;
    }
    
    .venture-card-title {
        font-size: 1.3rem;
    }
    
    .venture-image {
        height: 200px;
    }
}

/* Footer Override for Ventures Page */
.ventures-main + .footer {
    background: #ffffff;
    color: #333333;
}

.ventures-main + .footer .footer-section h4 {
    color: #333333;
}

.ventures-main + .footer .footer-section a {
    color: #666666;
}

.ventures-main + .footer .footer-section a:hover {
    color: #333333;
}

/* =========================================================
   ANIMATION KEYFRAMES FOR VENTURES PAGE
   ========================================================= */

/* Slide In Up Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In Left Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right Animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card Slide In Animation */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade In Scale Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ventures-main + .footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666666;
}