/* dengeX Project Pages Styles */

.dxpp-project-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Hero Section */
.dxpp-hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dxpp-hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInLeft 1s ease-out;
}

.dxpp-hero-tag {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.dxpp-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.dxpp-hero-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
}

.dxpp-hero-features {
    margin-bottom: 40px;
}

.dxpp-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.dxpp-feature-item::before {
    content: "✓";
    margin-right: 12px;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.dxpp-cta-button {
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.dxpp-cta-button:hover {
    background: #333;
    transform: translateX(5px);
}

.dxpp-cta-button::after {
    content: "→";
    font-size: 20px;
}

.dxpp-hero-right {
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease-out;
}

.dxpp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 80px;
}

.dxpp-energy-badge {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.dxpp-energy-icon {
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dxpp-energy-text {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
}

.dxpp-energy-unit {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.dxpp-mission-badge {
    position: absolute;
    bottom: 40px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dxpp-mission-icon {
    width: 35px;
    height: 35px;
}

.dxpp-mission-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Gallery Section */
.dxpp-gallery-section {
    padding: 100px 60px;
    background: #fff;
}

.dxpp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.dxpp-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dxpp-gallery-item:hover {
    transform: scale(1.05);
}

.dxpp-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dxpp-video-item iframe,
.dxpp-video-item video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Content Section */
.dxpp-content-section {
    padding: 100px 60px;
    text-align: center;
    background: #f8f9fa;
}

.dxpp-section-tag {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.dxpp-section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.dxpp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.dxpp-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dxpp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.dxpp-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dxpp-card:hover .dxpp-card-image {
    transform: scale(1.1);
}

.dxpp-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.dxpp-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    filter: invert(1);
}

.dxpp-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dxpp-card-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .dxpp-hero-section {
        grid-template-columns: 1fr;
    }

    .dxpp-hero-left {
        padding: 60px 40px;
    }

    .dxpp-hero-title {
        font-size: 42px;
    }

    .dxpp-hero-right {
        min-height: 500px;
    }

    .dxpp-hero-image {
        border-radius: 0;
    }

    .dxpp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dxpp-content-section, .dxpp-gallery-section {
        padding: 80px 40px;
    }

    .dxpp-section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .dxpp-hero-left {
        padding: 40px 24px;
    }

    .dxpp-hero-title {
        font-size: 32px;
    }

    .dxpp-hero-description {
        font-size: 14px;
    }

    .dxpp-energy-badge {
        right: 24px;
        padding: 15px 20px;
    }

    .dxpp-energy-text {
        font-size: 32px;
    }

    .dxpp-mission-badge {
        right: 24px;
        bottom: 24px;
        padding: 12px 20px;
    }

    .dxpp-content-section, .dxpp-gallery-section {
        padding: 60px 24px;
    }

    .dxpp-section-title {
        font-size: 28px;
    }

    .dxpp-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dxpp-card {
        height: 350px;
    }

    .dxpp-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dxpp-hero-title {
        font-size: 28px;
    }

    .dxpp-energy-badge {
        padding: 12px 16px;
    }

    .dxpp-energy-text {
        font-size: 28px;
    }

    .dxpp-energy-unit {
        font-size: 14px;
    }

    .dxpp-mission-badge {
        padding: 10px 16px;
    }

    .dxpp-mission-text {
        font-size: 12px;
    }

    .dxpp-section-title {
        font-size: 24px;
    }

    .dxpp-card-title {
        font-size: 20px;
    }

    .dxpp-card-description {
        font-size: 13px;
    }
}
