/* Custom CSS Styles */

/* Company Name Gradient */
.company-name-gradient {
    background: linear-gradient(135deg, #afc930, #8fb82e, #c7db68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Project Cards */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Atoama Theme */
.atoama-card {
    background: linear-gradient(135deg, #ffffff, #f8fdf0);
}

.atoama-title {
    color: #7a9c26;
}

.btn-atoama {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: linear-gradient(135deg, #afc930, #8fb82e);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(175, 201, 48, 0.2);
}

.btn-atoama:hover {
    background: linear-gradient(135deg, #8fb82e, #7a9c26);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(175, 201, 48, 0.3);
}

/* Furstar Theme */
.furstar-card {
    background: linear-gradient(135deg, #ffffff, #fcfef7);
}

.furstar-title {
    color: #9cb856;
}

.btn-furstar {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: linear-gradient(135deg, #c7db68, #b5c95e);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(199, 219, 104, 0.2);
}

.btn-furstar:hover {
    background: linear-gradient(135deg, #b5c95e, #a3b354);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(199, 219, 104, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    animation: fadeInUp 0.6s ease-out;
}

.atoama-card {
    animation-delay: 0.1s;
}

.furstar-card {
    animation-delay: 0.2s;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .project-card {
        margin: 0 1rem 2rem 1rem;
        border-radius: 1rem;
    }
    
    .btn-atoama,
    .btn-furstar {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Ensure card spacing */
    .mobile-main {
        gap: 1.5rem;
    }
    
    /* Mobile padding adjustment */
    .mobile-padding {
        padding: 1rem;
    }
    
    /* Mobile container margin */
    .mobile-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
} 