/* atdepth Home Page Styles */

/* Hero Section */
.hero {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--atdepth-blue-dark) 0%, var(--atdepth-blue-light) 100%);
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--atdepth-blue-superlight);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.section {
    padding: var(--space-2xl) 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-section {
    background: var(--bg-secondary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--atdepth-blue-alpha);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--atdepth-blue);
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Markets Section */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.market-item {
    background: var(--atdepth-blue-alpha);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.market-item:hover {
    border-color: var(--atdepth-blue);
    background: rgba(30, 84, 158, 0.15);
}

.market-image {
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.market-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 66.67%; /* 2/3 = 66.67% for 3:2 aspect ratio */
}

.market-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-title {
    font-weight: 600;
    color: var(--atdepth-blue);
}

/* Team Section */



.team-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(35deg, var(--atdepth-royal-dark) 0%, var(--atdepth-blue-dark) 100%);
}
.team-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}



.team-member {
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.member-image {
    margin-bottom: 1rem;
}

.member-image img {
    width: 300px;
    height: 300px;
    border-radius: 0%;
    object-fit: cover;
}

.member-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.member-title {
    color: rgb(150,150,150);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}


/* Supported By Section */
.supported-by {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.sponsor-item {
    width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--atdepth-blue);
    transition: transform 0.2s;
    flex: 0 0 220px;
    box-sizing: border-box;
}



.sponsor-item img {
    max-width: 200px;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.2s;
}

.sponsor-item:hover img {
    filter: none;
}

/* Responsive */
@media (max-width: 600px) {
    .sponsors-grid {
        gap: 1rem;
    }
    .sponsor-item {
        flex: 0 1 100px;
        padding: 0.5rem;
    }
    .sponsor-item img {
        max-width: 80px;
        max-height: 40px;
    }
}