/* Custom Styles */
.gradient-text {
    background: linear-gradient(90deg, #F97316, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    background: linear-gradient(135deg, #F9FAFB, #E5E7EB);
}

.btn-gradient {
    background: linear-gradient(90deg, #F97316, #10B981);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.script-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.script-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.tab-active {
    border-bottom: 3px solid #F97316;
    color: #F97316;
    font-weight: 600;
}

.language-option {
    display: flex;
    align-items: center;
}

.language-option span {
    margin-left: 8px;
}

.nav-active {
    background-color: #F3F4F6;
    color: #111827;
}

.mobile-menu-hidden {
    display: none;
}

/* Section spacing */
#about {
    margin-bottom: 0;
    padding-bottom: 1 rem;
}

#about+footer {
    margin-top: 0;
    /* footer starts immediately */
}

footer {
    margin-top: 0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile button spacing */
@media (max-width: 768px) {

    /* Add space between buttons in mobile */
    .btn-group-mobile {
        flex-direction: column;
        gap: 1rem !important;
        /* 16px space between buttons */
    }

    /* Specific fix for hero section buttons */
    .sm\:max-w-lg .inline-flex.items-center {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    /* Ensure buttons stack properly */
    .sm\:max-w-lg .flex.items-center {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.camera-toast {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}