/* Project Details App Styles */
.project-details-app {
    /* Subtle pastel gradient background */
    background: #f5f5f7; /* fallback */
    background: linear-gradient(135deg, #e9ecff 0%, #fefbff 100%);
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.project-content {
    padding: 16px 16px 50px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    height: 100%;
    box-sizing: border-box;
    background: transparent; /* allow gradient from parent to show */
    scrollbar-width: none; /* Firefox */
}

.project-content::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

.project-content::-webkit-scrollbar-thumb,
.project-content::-webkit-scrollbar-track {
    display: none !important;
}

.project-header {
    margin-bottom: 20px;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}

.project-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Specific styling for Chalkboard project images */
#chalkboard-project .project-image {
    height: 180px;  /* 10% smaller than the default 200px */
}
/* Specific styling for Chalkboard project images */
#colors-project .project-image {
    height: 180px;  /* 10% smaller than the default 200px */
}
.project-section {
    margin-bottom: 20px;
    /* Glassmorphism card */
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.project-section.visible {
    transform: translateY(0);
    opacity: 1;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    margin-top: 15px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.project-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.technologies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.technology-tag {
    /* Glass pill */
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.features-list {
    padding-left: 20px;
    margin-top: 10px;
}

.features-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-link-button {
    display: inline-block;
    background-color: #007AFF;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.project-link-button:hover {
    background-color: #0056b3;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.gallery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== Vibrant blurred background blobs ===== */
.project-details-app::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(at 20% 20%, rgba(0, 123, 255, 0.4) 0%, transparent 60%),
        radial-gradient(at 80% 30%, rgba(255, 0, 150, 0.35) 0%, transparent 60%),
        radial-gradient(at 50% 80%, rgba(255, 255, 0, 0.3) 0%, transparent 60%);
    filter: blur(120px) saturate(120%);
    z-index: -1;
    pointer-events: none;
    animation: backgroundMove 30s ease-in-out infinite alternate;
}

@keyframes backgroundMove {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(-50px, -30px) scale(1.05); }
} 