/* Landing Page - Dark Theme Design - Full Screen */
.landing-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
    color: #ffffff;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-top: -15px;
    margin-bottom: -15px;
    box-sizing: border-box;
}

/* Top Right Navigation Links */
.top-right-links {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    gap: 24px;
    z-index: 10;
}

.nav-link-text {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-text:hover {
    color: #ffde00;
    text-decoration: none;
}

/* Main Container */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 80px;
}

/* Hero Section (Left Side) */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Main Heading */
.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -1px;
}

/* Description Text */
.description-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 540px;
}

/* Call to Action Button - Yellow */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffde00;
    color: #000000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.3);
}

.cta-button:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 222, 0, 0.5);
    color: #000000;
    text-decoration: none;
}

.plus-icon {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

/* Features Section (Right Side) */
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

/* Feature Card */
.feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 222, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Problems Section */
.problems-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.problems-container {
    width: 100%;
}

.problems-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.problems-subheading {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.new-project-btn {
    background: #ffde00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.new-project-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.3);
    color: #000000;
    text-decoration: none;
}

/* Projects List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.project-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #ffde00;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 222, 0, 0.2);
}

.edit-btn {
    color: #ffde00;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(255, 222, 0, 0.1);
    color: #ffde00;
    text-decoration: none;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.project-title-section {
    flex: 1;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.project-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.open-btn {
    background: transparent;
    border: 1px solid rgba(255, 222, 0, 0.3);
    color: #ffde00;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.open-btn:hover {
    background: rgba(255, 222, 0, 0.1);
    border-color: #ffde00;
    color: #ffde00;
    text-decoration: none;
}

/* Workflow Phases */
.workflow-phases {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
    padding: 20px 0;
    position: relative;
}

.phase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.phase-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    transition: all 0.3s ease;
}

.phase-item.active .phase-icon {
    background: #ffde00;
    border-color: #ffde00;
    color: #000000;
    box-shadow: 0 0 0 4px rgba(255, 222, 0, 0.2);
}

.phase-item.completed .phase-icon {
    background: rgba(255, 222, 0, 0.2);
    border-color: #ffde00;
    color: #ffde00;
}

.phase-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.phase-item.active .phase-name {
    color: #ffde00;
    font-weight: 600;
}

.phase-item.completed .phase-name {
    color: rgba(255, 222, 0, 0.7);
}

.phase-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    position: relative;
    top: -24px;
    z-index: 1;
    transition: background 0.3s ease;
}

.phase-connector.completed {
    background: rgba(255, 222, 0, 0.3);
}

/* Project Progress Bar */
.project-progress {
    margin-top: 16px;
}

.progress-bar-full {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #ffde00;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Login Prompt */
.login-prompt {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.login-prompt i {
    font-size: 64px;
    color: #ffde00;
    margin-bottom: 24px;
}

.login-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ffde00;
    color: #ffde00;
}

.cta-button.secondary:hover {
    background: rgba(255, 222, 0, 0.1);
    color: #ffde00;
}

/* Dashboard Problems Grid - Full Dashboard Layout */
.dashboard-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dashboard-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-card:hover {
    border-color: rgba(255, 222, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.dashboard-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-card-placeholder {
    background: #0a0a0a;
}

.dashboard-card-placeholder i {
    font-size: 64px;
    color: #ffde00;
}

.dashboard-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.stage-badge-inline {
    margin-bottom: 12px;
}

.stage-badge-small {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    background: #ffde00;
    color: #000000;
}

.dashboard-card-meta {
    margin-bottom: 12px;
}

.meta-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.meta-text i {
    color: #ffde00;
    margin-right: 4px;
}

.dashboard-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
}

.custom-problem-details {
    background: rgba(255, 222, 0, 0.1);
    border: 1px solid rgba(255, 222, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.stakeholders-info {
    margin-bottom: 12px;
}

.dashboard-card-location {
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-comments {
    margin-top: 12px;
    margin-bottom: 12px;
}

.comments-heading {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.comments-preview {
    max-height: 120px;
    overflow-y: auto;
}

.comment-preview-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 8px;
}

.comment-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 4px 0 0 0;
}

.dashboard-card-actions {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.action-row:last-child {
    margin-bottom: 0;
}

.action-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
}

.btn-view {
    background: transparent;
    border-color: rgba(255, 222, 0, 0.3);
    color: #ffde00;
}

.btn-view:hover {
    background: rgba(255, 222, 0, 0.1);
    color: #ffde00;
    text-decoration: none;
}

.btn-ideate {
    background: #ffde00;
    color: #000000;
    border: none;
}

.btn-ideate:hover {
    background: #ffd700;
    color: #000000;
    text-decoration: none;
}

.btn-brainstorm {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.btn-brainstorm:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.btn-solution, .btn-define {
    background: #ffde00;
    color: #000000;
    border: none;
}

.btn-solution:hover, .btn-define:hover {
    background: #ffd700;
    color: #000000;
    text-decoration: none;
}

.btn-edit {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.btn-edit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.btn-delete {
    background: transparent;
    border-color: rgba(255, 68, 68, 0.3);
    color: rgba(255, 68, 68, 0.7);
    cursor: pointer;
}

.btn-delete:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.problem-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.problem-card-link:hover .problem-card {
    border-color: rgba(255, 222, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.problem-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-card-placeholder {
    background: #0a0a0a;
}

.problem-card-placeholder i {
    font-size: 48px;
    color: #ffde00;
}

.problem-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

/* Stage Indicator */
.stage-indicator {
    margin-bottom: 16px;
}

.stage-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    color: #000000;
    background: #ffde00;
}

.stage-badge.stage-1 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-2 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-3 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-4 {
    background: #ffde00;
    color: #000000;
}

.stage-badge.stage-5 {
    background: #ffde00;
    color: #000000;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 100%;
    background: #ffde00;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.problem-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-item i {
    color: #ffde00;
}

.problem-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    flex: 1;
}

.problem-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-link {
    font-size: 14px;
    font-weight: 500;
    color: #ffde00;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.problem-card-link:hover .view-link {
    gap: 12px;
}

/* No Problems Message */
.no-problems-message {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.no-problems-message i {
    font-size: 64px;
    color: #ffde00;
    margin-bottom: 24px;
}

.no-problems-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.no-problems-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .landing-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 20px;
    }

    .hero-section {
        text-align: center;
        align-items: center;
    }

    .description-text {
        max-width: 100%;
    }

    .features-grid {
        max-width: 600px;
        margin: 0 auto;
    }

    .problems-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-page {
        padding: 40px 16px;
    }

    .top-right-links {
        top: 10px;
        right: 16px;
        gap: 16px;
    }

    .nav-link-text {
        font-size: 12px;
    }

    .main-heading {
        font-size: 32px;
    }

    .description-text {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .problems-heading {
        font-size: 28px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }

    .logo-text {
        font-size: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .problems-heading {
        font-size: 24px;
    }
}
