* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Londrina Solid', cursive;
    background-color: #f0f0f0;
    transition: background-color 0.5s ease;
    overflow-x: hidden;
    overflow-y: auto;
}

.color-bars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;
    display: flex;
    z-index: 1000;
    position: relative;
}

.color-bars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: linear-gradient(90deg, #FF8D8D 0%, #FF8D8D 15%, #FFAE81 20%, #FFAE81 35%, #CE93D8 40%, #CE93D8 55%, #81D4FA 60%, #81D4FA 75%, #A5D6A7 80%, #A5D6A7 85%, #70E4F2 95%, #70E4F2 100%);
    z-index: 1001;
}

.main-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
}

.title {
    font-size: 144px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.5s ease;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .title {
        font-size: 120px;
    }
}

@media (max-width: 992px) {
    .title {
        font-size: 96px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 72px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 48px;
    }
}

@media (max-width: 400px) {
    .title {
        font-size: 36px;
    }
}

.projects-section {
    margin-top: 50vh;
    padding: 0 100px;
    display: flex;
    gap: 60px;
    justify-content: center;
    min-height: 100vh;
}

.projects-section.single-column {
    flex-direction: column;
    align-items: center;
}

.projects-section.single-column .project-column {
    max-width: 600px;
    width: 100%;
}

.project-column {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}

.project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.project-logo {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.project-info {
    text-align: center;
    margin-bottom: 20px;
}

.project-card .project-tech {
    margin-top: auto;
    margin-bottom: 15px;
}

.project-card .project-link {
    margin-top: auto;
}

.project-card .project-image {
    margin-top: auto;
    margin-bottom: 15px;
}

.project-card .project-date {
    margin-top: auto;
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-btn img {
    height: 40px;
    width: auto;
    display: block;
}

.ios-download img {
    height: 40px;
}

.android-download img {
    height: 40px;
}

.project-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8D8D 0%, #FF8D8D 15%, #FFAE81 20%, #FFAE81 35%, #CE93D8 40%, #CE93D8 55%, #81D4FA 60%, #81D4FA 75%, #A5D6A7 80%, #A5D6A7 85%, #70E4F2 95%, #70E4F2 100%);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-info h3 {
    font-family: 'Londrina Solid', cursive;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 900;
    margin-top: 0;
}

.project-info p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.coming-soon {
    font-family: 'Londrina Solid', cursive;
    font-size: 18px;
    font-weight: 900;
    color: #FF8D8D;
    text-align: center;
    margin-top: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FF8D8D, #FFAE81);
    color: white;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 141, 141, 0.3);
}

.project-tech {
    margin-top: 15px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #666;
    display: inline-block;
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF8D8D, #FFAE81);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 141, 141, 0.3);
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 141, 141, 0.4);
}

.no-projects, .error-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.no-projects::before, .error-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8D8D 0%, #FF8D8D 15%, #FFAE81 20%, #FFAE81 35%, #CE93D8 40%, #CE93D8 55%, #81D4FA 60%, #81D4FA 75%, #A5D6A7 80%, #A5D6A7 85%, #70E4F2 95%, #70E4F2 100%);
}

.no-projects p, .error-message p {
    font-family: 'Londrina Solid', cursive;
    font-size: 24px;
    color: #666;
    margin: 0;
}

.error-message p {
    color: #e74c3c;
}

.project-image {
    margin-top: 15px;
    text-align: center;
}

.project-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-date {
    margin-top: 15px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #999;
    text-align: right;
    font-style: italic;
}

.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 80px;
    padding: 60px 0 20px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8D8D 0%, #FF8D8D 15%, #FFAE81 20%, #FFAE81 35%, #CE93D8 40%, #CE93D8 55%, #81D4FA 60%, #81D4FA 75%, #A5D6A7 80%, #A5D6A7 85%, #70E4F2 95%, #70E4F2 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Londrina Solid', cursive;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.location-info p {
    margin-bottom: 5px;
}

.location-info strong {
    color: #ecf0f1;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ecf0f1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.social-link:hover {
    color: #ecf0f1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ecf0f1;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 50px;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 50px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
    
    .footer-bottom-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .project-content {
        align-items: center;
        text-align: center;
    }
    
    .project-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .project-info h3 {
        font-size: 20px;
    }
    
    .project-card {
        height: 244px;
    }
    
    .download-buttons {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .projects-section {
        flex-direction: column;
        gap: 48px;
    }
    
    .project-column {
        max-width: 100%;
        width: 100%;
    }
    
    .project-card {
        padding: 20px;
        height: auto;
        min-height: 280px;
        margin-bottom: 48px;
    }
    
    .project-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .download-btn img {
        height: 35px;
    }
}
