/* Homepage Specific Adjustments for Atmosphere - Desktop Version */

/* Desktop hero image (default) */
/* Desktop hero image (default) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../../assets/images/20260127-110714.png');
    background-position: center 45% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    opacity: 1;
}

.hero-section {
    position: relative;
    background: #0a1128;
}

.hero-content {
    /* Restored from source inline style */
    padding: calc(750px * var(--hero-ratio, 1)) 0 calc(160px * var(--hero-ratio, 1));
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fdfcfb 0%, #f4f4f4 100%);
}

.pillar-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 12px;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-secondary);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.pillar-desc {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.pillar-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pillar-link::after {
    content: '→';
    transition: transform 0.3s;
}

.pillar-card:hover .pillar-link::after {
    transform: translateX(5px);
}

/* Stats Stripe */
.stats-stripe {
    background: var(--color-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Latest News & Events Split */
.latest-section {
    padding: 100px 0;
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.news-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.news-date {
    min-width: 80px;
    text-align: center;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.news-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
}

.news-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95), rgba(28, 46, 100, 0.9)), url('../../assets/images/20260127-110714.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

/* New Separate Feature Sections */
.journal-feature-section {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.conference-feature-section {
    padding: 120px 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.training-feature-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #fffcf8, #fdf4e8);
    color: #3e2723;
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-container.reverse .feature-text {
    order: 2;
}

.feature-container.reverse .feature-visual {
    order: 1;
}

.feature-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    margin-top: 10px;
}

.feature-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.feature-visual {
    height: 450px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.feature-visual:hover {
    transform: scale(1.02);
}

.conference-visual {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.training-visual {
    background: white;
    border: 1px solid #eaddcf;
    box-shadow: 0 30px 60px rgba(203, 161, 116, 0.15);
}

/* Global Data Section */
.global-data-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.data-header {
    margin-bottom: 50px;
}

.data-header h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.data-header p {
    color: #666;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    padding-top: 15px;
}

.data-header p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--color-secondary), #e0e0e0);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.data-card {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.data-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.data-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-models-blue, #1c2e64);
}

.data-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c2e64;
    margin-bottom: 10px;
    line-height: 1;
}

.data-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.data-source {
    margin-top: 20px;
    text-align: right;
    font-size: 0.75rem;
    color: #999;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    display: block;
    clear: both;
}

/* Light Conference Section */
.conference-feature-section.light-theme {
    background-color: #ffffff;
    color: #0a1128;
}

.conference-feature-section.light-theme .feature-text h2 {
    color: #0a1128;
}

.conference-feature-section.light-theme .feature-text p {
    color: #475569;
}

.conference-feature-section.light-theme .conference-visual {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Community Preview Section */
.community-preview-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.community-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.community-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.community-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.community-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Desktop Preview Sections */
.desktop-preview-section,
.desktop-news-section,
.conference-overview-section {
    display: block !important;
}

/* Hide Mobile Components */
.mobile-section-title,
.tablet-subtitle,
.mobile-events-section,
.conference-overview-mobile {
    display: none !important;
}

/* Training Certificate Section (Desktop Base) */
.cert-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.cert-card-visual {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(203, 161, 116, 0.2);
    border: 2px solid #e0d5c7;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Global Events & News Grid Layout (Desktop) */
.grid-4-cols,
.events-layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}